Skip to main content

Dynamic pricing

The price per request depends on the limit parameter (how many results you request):
limitPrice per request
1-20$0.10
30$0.12
50$0.16
75$0.21
100 (max)$0.26
Formula:
price = $0.10 + max(0, limit - 20) * $0.002
The base price is 0.10forupto20results.Eachadditionalresultabove20costs0.10 for up to 20 results. Each additional result above 20 costs 0.002.

Cost per lead

ApproachCost per lead
Social Intel (limit=100)$0.003
Social Intel (limit=20)$0.005
Traditional data brokers33 - 10

Cost optimization tips

Use larger batches

# Efficient: 100 results for $0.26 ($0.003/lead)
GET /v1/search?category=Beauty&country=US&limit=100

# Inefficient: 5 x 20 results for $0.50 ($0.005/lead)
GET /v1/search?category=Beauty&country=US&limit=20  (x5)
Requesting limit=100 is 48% cheaper per lead than five separate limit=20 requests.

Fan out by country

For global campaigns, run parallel requests per country:
5 countries x limit=50 = $0.80 total for 250 leads

Progressive refinement

Start broad, then narrow only if you need more relevant results:
Step 1: GET /v1/search?query=yoga&country=US&limit=20           → $0.10
Step 2: GET /v1/search?category=Health&query=yoga+teacher&limit=20 → $0.10 (only if needed)

Payment methods

  • USDC on Base (EVM) — lowest gas fees
  • USDC on Solana — fast confirmation
Payments are handled automatically by x402 client libraries. You never interact with payment details directly.

No subscriptions

There are no monthly fees, no tiers, no rate limit tiers, and no API keys. Every wallet with USDC can use the API immediately — payment is authentication.

Monthly budget scenarios

UsageRequests/moCost/moLeads
Light (testing)10$2.601,000
Agency (1 campaign)100$2610,000
Platform (integrated)1,000$260100,000
Each request with limit=100 returns up to 100 influencer profiles. 10 requests = 1,000 leads for $2.60.