GETInsights3–7 credits

Lead fit scoring

GET https://api.instagramapi.dev/v1/insights/profile/qualify

Scores how well an account matches your ideal-customer description. Pass `criteria` describing the lead you want (e.g. "US-based fitness coaches with 10k–100k followers selling online programs") and we score the profile + recent posts 0–100 with reasons and signals. Cost: 3–7 credits depending on how many posts are considered.

Build this with an AI agent

Paste this prompt into Claude, Codex, or any coding agent.

Parameters

NameTypeRequiredDescription
handlestringyesAn Instagram account. Accepts a username (`nike`), a numeric user id (`13460080`), or a full profile URL (`https://instagram.com/nike`). We resolve it automatically.
criteriastringyesPlain-English description of your ideal lead.
postsnumbernoRecent posts to consider (1–50). Defaults to 12.

Example request

curl "https://api.instagramapi.dev/v1/insights/profile/qualify?handle=nike&criteria=US%20fitness%20coaches%20selling%20online%20programs&posts=12" \
  -H "Authorization: Bearer $INSTAGRAMAPI_KEY"

Try it

Live request · uses 3 credits

Example responses

Switch tabs to see the body shape for success and each error status.

{
  "data": {
    "username": "nike",
    "criteria": "US fitness coaches selling online programs",
    "fit_score": 22,
    "verdict": "weak",
    "reasons": [
      "Global brand, not an individual coach",
      "No online-program offer in bio"
    ],
    "signals": {
      "positive": [
        "Fitness niche"
      ],
      "negative": [
        "Not a coach",
        "Enterprise account"
      ]
    },
    "recommended_action": "Skip. Does not match the ICP."
  },
  "meta": {
    "endpoint": "insights/profile/qualify",
    "request_id": "req_3f8a1c9e",
    "credits_charged": 3,
    "credits_remaining": 4987,
    "ms": 412
  }
}

Response fields

Fields returned under data on a 200 response. Every response also includes a meta object with billing info.

FieldTypeDescription
usernamestringThe account's @handle.
criteriastringThe ideal-lead description you supplied, echoed back.
fit_scorenumberHow well the account matches your criteria (0–100).
verdictstringShort label for the fit (e.g. strong / moderate / weak).
reasonsarray<string>Key reasons behind the score.
signalsobjectPositive and negative signals the score is based on.
signals.positivearray<string>Signals that support a good fit.
signals.negativearray<string>Signals that count against the fit.
recommended_actionstringSuggested next step (e.g. pursue or skip).