# SocialIntel Instagram Influencer Search

> SocialIntel Instagram Influencer Search is a paid API for AI agents from api.socialintel.dev, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Search and filter Instagram influencer profiles by keyword, category, demographics, location, and follower count, returning up to 100 profiles per request.

## Facts

- Endpoint: GET https://api.socialintel.dev/v1/search
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Success rate: 0% of calls made through Zero
- Rating: 1.3 / 5 from 1 review
- Activations on Zero: 4
- Tags: x402, data
- Canonical page: https://www.zero.xyz/c/socialintel-instagram-influencer-search-a7d48ecf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OasHE6idc3oYMIN9x05pS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialintel-instagram-influencer-search-a7d48ecf
```

Example prompt: Find me up to 50 female fitness influencers based in Los Angeles with at least 10,000 followers who have a public business email I can reach out to.

## When to prefer this

Use this endpoint when you need to discover and filter Instagram influencers by niche, location, follower range, gender, or contact availability. Ideal for influencer outreach campaigns, market research, or building contact lists. Prefer this over generic social media APIs when the specific need is Instagram influencer discovery with demographic and geographic filters and optional business email enrichment.

## Known failure modes

- Payment required (402) if demo=true not set and no USDC payment provided
- Rate limit exceeded (5 requests/hour per IP on demo tier)
- No results found for overly narrow filter combinations
- Invalid country ISO code or unsupported country name returns empty or error
- limit parameter out of range (below 1 or above 100) returns validation error

## How this service works

Search Instagram influencers by keyword, category, demographics, or location.

Returns up to 100 influencer profiles per request. Each result includes username,
follower count, bio, category, and business email (when available).

**Dynamic pricing:** $0.50 for up to 20 results, +$0.01 per result above 20.
Examples: 20 results = $0.50, 50 results = $0.80, 100 results = $1.30.

**Free demo:** Add `demo=true` to try the API with no payment. Returns up to 3 results,
no USDC required. Rate limited to 5 requests per hour per IP.

Payment via x402 (USDC on Base or Solana). No API keys required.

## Output

Returns a JSON object with a count integer and a results array of up to 100 influencer profiles, each containing username, full_name, bio, followers, following, category, gender, is_business, is_verified, media_count, and public_email fields.

## Example request

```json
{
 "limit": 20,
 "query": "photography",
 "category": "Photography",
 "min_followers": 5000
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "description": "City filter (e.g. 'Los Angeles', 'London'). Works without a keyword query."
  },
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 100,
   "minimum": 1,
   "description": "Max results (1-100, default 20)"
  },
  "query": {
   "type": "string",
   "description": "Text search by name or keyword"
  },
  "gender": {
   "enum": [
    "male",
    "female"
   ],
   "type": "string",
   "description": "Gender filter"
  },
  "country": {
   "type": "string",
   "description": "Country — ISO code (US, UK, DE) or full name (United States, Germany)"
  },
  "category": {
   "type": "string",
   "description": "Business category (Beauty, Fitness, Tech, etc)"
  },
  "has_email": {
   "type": "boolean",
   "description": "If true, only return profiles with a public business email"
  },
  "max_followers": {
   "type": "integer",
   "description": "Maximum follower count"
  },
  "min_followers": {
   "type": "integer",
   "description": "Minimum follower count"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "bio": {
      "type": "string"
     },
     "gender": {
      "type": "string"
     },
     "category": {
      "type": "string"
     },
     "username": {
      "type": "string"
     },
     "followers": {
      "type": "integer"
     },
     "following": {
      "type": "integer"
     },
     "full_name": {
      "type": "string"
     },
     "is_business": {
      "type": "boolean"
     },
     "is_verified": {
      "type": "boolean"
     },
     "media_count": {
      "type": "integer"
     },
     "public_email": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialintel-instagram-influencer-search-a7d48ecf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialintel.dev](https://www.zero.xyz/host/api.socialintel.dev/llms.txt)
