API
AI 검색

AI 기반 크리에이터 발굴 기능을 구축하세요

플랫폼에 AI 기반 검색을 도입해 사용자가 Instagram, TikTok, YouTube 인플루언서 데이터베이스에서 스타일, 콘텐츠, 오디언스, 맥락별로 크리에이터를 찾게 하세요.

실제 작동 모습을 확인하세요. API로 진정한 비주얼 발굴을 제공합니다. 수십억 개의 이미지와 동영상 프레임을 분석해 크리에이터의 정체성과 콘텐츠 주제의 맥락을 파악합니다.

Modash Platform도 AI 엔드포인트를 사용하므로, 사용자는 자연어 쿼리나 이미지로 최적의 크리에이터를 검색할 수 있습니다.
스타일로 검색하세요. 브랜드가 특정 비주얼 아이덴티티에 맞는 크리에이터를 찾게 하세요.
맥락 기반 검색. 프로필과 콘텐츠를 바탕으로 크리에이터를 찾는 도구를 만드세요.
유사 크리에이터. 유사 크리에이터 엔드포인트로 좋아하는 크리에이터와 비슷한 프로필을 찾으세요.
안전성 검사. 잠재 파트너를 프로그래밍 방식으로 검사해 적합성을 확인하세요.

Modash AI로 구축해야 하는 이유는 무엇인가요?

개발자 경험을 위해 만들었습니다. API는 개발자가 아이디어를 최대한 빠르게 프로덕션 수준까지 구현하도록 설계되었습니다. AI 엔드포인트는 현재 Instagram, TikTok, YouTube의 모든 Discovery API 사용자에게 제공됩니다.

자연어 쿼리 또는 이미지 기반 페이로드로 간단한 POST 요청을 보내세요.
ML 운영 불필요. 학습, 인덱싱, 데이터베이스 관리는 저희가 맡습니다. 사용자 경험에만 집중하세요.
독보적으로 확장하세요. AI 검색용 최신 데이터베이스에는 Instagram, TikTok, YouTube에서 팔로워가 10k+명인 모든 크리에이터가 포함됩니다.
필터와 비주얼을 결합했습니다. 위치, 참여도 등의 표준 필터와 쿼리를 결합해 최적의 대상을 찾으세요.

시작은 간단합니다. 통화를 예약하고 목표를 공유해 구축을 시작하세요

데모 요청
데모 요청

샘플 쿼리와 응답. Modash API로 AI 검색의 전체 과정을 확인하세요. 아래는 데이터를 살펴볼 수 있는 엔드포인트 예시입니다. 다른 엔드포인트와 필터는 API 문서를 참조하세요.

요청
curl -X POST https://api.modash.io/v1/ai/instagram/text-search \
  -d '{
    "query": "woman with curly hair doing yoga outdoors",
    "limit": 5,
    "filter": {
      "influencer": {
        "followers": { "min": 10000, "max": 500000 }
      },
      "audience": {
        "location": [{ "id": 148838, "weight": 0.2 }]
      }
    }
  }'
응답
{
  "error": false,
  "total": 320,
  "results": [
    {
      "userId": "44019283751",
      "profile": {
        "username": "curlyyogi_maya",
        "fullname": "Maya Torres",
        "url": "https://www.instagram.com/curlyyogi_maya/",
        "picture": "https://imgigp.modash.io/...",
        "followers": 78500,
        "engagements": 5200,
        "engagementRate": 0.0662
      },
      "matchingPosts": [
        {
          "id": "3398210451823",
          "url": "https://www.instagram.com/p/...",
          "thumbnail": "https://imgigp.modash.io/...",
          "score": 0.92
        }
      ]
    },
    {
      "userId": "52918304716",
      "profile": {
        "username": "wildflow.wellness",
        "fullname": "Priya Sharma",
        "url": "https://www.instagram.com/wildflow.wellness/",
        "picture": "https://imgigp.modash.io/...",
        "followers": 45200,
        "engagements": 2800,
        "engagementRate": 0.0619
      },
      "matchingPosts": [
        {
          "id": "3401782910534",
          "url": "https://www.instagram.com/p/...",
          "thumbnail": "https://imgigp.modash.io/...",
          "score": 0.87
        }
      ]
    }
  ]
}
요청
curl -X POST https://api.modash.io/v1/ai/instagram/image-search \
  -d '{
    "image_url": "https://example.com/reference-image.jpg",
    "limit": 5,
    "filter": {
      "influencer": {
        "followers": { "min": 10000 }
      }
    }
  }'
응답
{
  "error": false,
  "total": 185,
  "results": [
    {
      "userId": "60129384501",
      "profile": {
        "username": "studio.mira",
        "fullname": "Mira Novak",
        "url": "https://www.instagram.com/studio.mira/",
        "picture": "https://imgigp.modash.io/...",
        "followers": 112000,
        "engagements": 6300,
        "engagementRate": 0.0563
      },
      "matchingPosts": [
        {
          "id": "3415098230187",
          "url": "https://www.instagram.com/p/...",
          "thumbnail": "https://imgigp.modash.io/...",
          "score": 0.95
        }
      ]
    }
  ]
}
요청
curl -X POST https://api.modash.io/v1/ai/instagram/lookalikes \
  -d '{
    "userId": "curlyyogi_maya",
    "targetPlatform": "instagram",
    "limit": 5
  }'
응답
{
  "error": false,
  "total": 50,
  "source": {
    "userId": "44019283751",
    "username": "curlyyogi_maya",
    "platform": "instagram"
  },
  "results": [
    {
      "userId": "52918304716",
      "profile": {
        "username": "wildflow.wellness",
        "fullname": "Priya Sharma",
        "url": "https://www.instagram.com/wildflow.wellness/",
        "picture": "https://imgigp.modash.io/...",
        "followers": 45200,
        "engagements": 2800,
        "engagementRate": 0.0619
      },
      "matchingPosts": [
        {
          "id": "3401782910534",
          "url": "https://www.instagram.com/p/...",
          "thumbnail": "https://imgigp.modash.io/...",
          "score": 0.88
        }
      ],
      "similarity": 0.91
    }
  ]
}
원하는 활용 사례를 찾지 못하셨나요? 상담해 보세요!
데모 요청
데모 요청

자주 묻는 질문

구매 전 API를 테스트할 수 있나요?
네! 팀과 데모를 예약하면 테스트 크레딧을 받을 수 있습니다. 테스트 관련 문서를 확인해 더 자세히 알아보세요.
AI Search는 어떻게 작동하나요?
찾는 콘텐츠나 크리에이터를 자유롭게 설명하세요. AI Search가 의도를 즉시 파악해 일치하는 크리에이터와 콘텐츠를 보여줍니다. 필요에 따라 활성 크리에이터 또는 브랜드, 인구통계, 성과 지표 등의 필터로 검색을 세분화할 수도 있습니다.
AI Search로 크리에이터 검색 도구를 만들어야 하는 이유는?
기존 필터링의 시행착오와 끝없는 수동 스크롤을 줄여 브랜드에 맞는 크리에이터를 더 빨리 찾을 수 있기 때문입니다. 의도를 이해하고 필요한 결과를 정확히 제공하는 전문 어시스턴트가 있는 것과 같습니다.
요금과 청구는 어떻게 처리되나요?
AI Search는 Modash Discovery API의 일부이며, Discovery API는 연 $16,200부터 이용할 수 있습니다. 자세한 내용은 요금 페이지에서 확인하세요.