# Influship Creator Autocomplete Search

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

Returns autocomplete suggestions for influencer/creator names matching a partial query string, drawn from a database of 5M+ profiles.

## Facts

- Endpoint: GET https://api.influship.com/v1/creators/autocomplete
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-creator-autocomplete-search-eff8f114
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7OSR04oHbLVjpp7jCy8KO

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-creator-autocomplete-search-eff8f114
```

Example prompt: Can you autocomplete influencer names matching 'fitness' on Influship and show me up to 10 suggestions?

## When to prefer this

Use this endpoint when you need real-time typeahead/autocomplete suggestions for influencer or creator names — e.g. to power a search UI or quickly narrow down a creator's exact profile name before fetching full details. Prefer this over a full-text search endpoint when you have a partial name and need fast, ranked suggestions from the 5M+ Influship creator index.

## Known failure modes

- Empty 'data' array if no creators match the query string
- Missing required 'q' parameter returns a 400 validation error
- 'limit' value exceeding 20 or below 1 rejected with schema error
- Payment not settled via x402 results in 402 Payment Required
- Service unavailable if Influship backend is down (503)
- Very short or ambiguous query strings may return low-relevance suggestions

## How this service works

Discover and evaluate influencers with AI-powered creator search. Influship analyzes content, audiences, and brand fit across 5M+ profiles. Start free.

## Output

A JSON object with a 'data' array containing autocomplete-matched creator profile entries whose names or handles match the query string, up to the specified limit (max 20).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "fitness",
   "limit": 10
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/influship-creator-autocomplete-search-eff8f114/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)
