# DataPipe API — Autocomplete

> DataPipe API — Autocomplete is a paid API for AI agents from v2kidnapi.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns autocomplete suggestions for a given query string, sourced from a multi-source data API

## Facts

- Endpoint: POST https://v2kidnapi.vercel.app/api/autocomplete
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datapipe-api-autocomplete-da0ae8ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CEzJ8gTETzyc3WNGAyfsS

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 datapipe-api-autocomplete-da0ae8ca -d '<json body>'
```

Example prompt: Can you give me autocomplete suggestions for the search query 'climate change solutions' using DataPipe's multi-source autocomplete endpoint?

## When to prefer this

Use this endpoint when you need autocomplete or query suggestion completions for a given search term, especially within the DataPipe multi-source ecosystem that aggregates search, news, and Reddit data. Prefer this over generic search endpoints when you need predictive or partial-query completions rather than full search results.

## Known failure modes

- Missing required 'query' field returns validation error
- Empty query string may return empty or no suggestions
- Network timeout from upstream data sources
- Invalid JSON body returns 400 error
- Payment failure on x402 Base chain blocks the request

## How this service works

Multi-source data API for AI agents. Search, news, Reddit, translation, web scraping. Pay with x402 on Base chain.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing autocomplete suggestions for the provided query string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datapipe-api-autocomplete-da0ae8ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v2kidnapi.vercel.app](https://www.zero.xyz/host/v2kidnapi.vercel.app/llms.txt)
