Skip to main content
POST
/
v1
/
creators
/
match
JavaScript
import Influship from 'influship';

const client = new Influship({
  apiKey: process.env['INFLUSHIP_API_KEY'], // This is the default and can be omitted
});

const response = await client.creators.match({
  creators: [{}],
  intent: { query: 'Looking for fitness influencers to promote our new protein bar' },
});

console.log(response.data);
{
  "data": [
    {
      "creator": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "avatar_url": "<string>"
      },
      "input": {
        "creator_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "platform": "instagram",
        "username": "<string>"
      },
      "match": {
        "score": 0.85,
        "decision": "good",
        "reasons": [
          {
            "text": "Strong fit due to fitness content focus and engaged audience",
            "fact_id": "<string>",
            "source_post_id": "<string>"
          }
        ]
      }
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Score campaign fit request

Score campaign fit request

creators
object[]
required

Creators to evaluate

Required array length: 1 - 100 elements
intent
object
required

Campaign intent for creator matching

Response

Successful response

data
object[]
required