# Influship AI Influencer Search

> Influship AI Influencer Search is a paid API for AI agents from api.influship.com, paid per call via x402, $0.9/call, status unknown (last checked 2026-09-14).

Search and discover influencers from a 5M+ profile database using AI-powered analysis of content, audience, and brand fit

## Facts

- Endpoint: POST https://api.influship.com/v1/search
- Price: $0.9/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-ai-influencer-search-452e3272
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wZZe8vxqp9boR9zfQF9EY

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 influship-ai-influencer-search-452e3272 -d '<json body>'
```

Example prompt: Search Influship for up to 50 fitness and wellness influencers who would be a good fit for an organic supplement brand, filtering for creators with health-focused content.

## When to prefer this

Use this endpoint when you need to discover and evaluate multiple influencers matching specific criteria, niches, or brand fit requirements from a large database. Prefer this over manual social media browsing or smaller influencer databases when you need AI-powered content and audience analysis at scale. Best for campaign planning, creator vetting, and brand partnership research.

## Known failure modes

- Empty data array with total 0 if no influencers match the query or filters
- Invalid query string (minLength not met) returns 400 validation error
- Limit exceeds 100 returns 400 validation error
- Malformed filters object returns 400 or 422 error
- Payment not fulfilled (x402) returns 402 Payment Required
- Upstream database timeout returns 503 or 504 error

## How this service works

Influencer search

## Output

Returns a JSON object with a data array of matching influencer profiles (including content analysis, audience insights, and brand fit signals) and a meta object containing the total count of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 100,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "minLength": 1
  },
  "filters": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [],
  "meta": {
   "total": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/influship-ai-influencer-search-452e3272/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.influship.com](https://www.zero.xyz/host/api.influship.com/llms.txt)
