Analyze API

Orchestrate multiple supported operations (normalize, match, score, detect anomalies, and more) against one payload, charging only for the operations that run.

What it does

Run several intelligence operations against one payload in a single call.

When to use it

Reach for Analyze when you need to answer: Not sure which operation you need? It sits in the Orchestrate stage of the catalog — run several operations at once.

Endpoint & cost

POST /api/v1/analyze

Cost: Variable. Zaps draw down your shared monthly allowance; requests that fail validation are not charged.

Authentication

Send your key as a bearer token: Authorization: Bearer zap_live_…. See Authentication for key management and the alternate header.

Example request

curl https://zapinner.com/api/v1/analyze \
  -H "Authorization: Bearer zap_live_••••••" \
  -H "Content-Type: application/json" \
  -d '{"data":{"customer":"Acme Co"},"operations":["normalize","match","score"]}'
Every response is structured JSON and includes a request_id. Full field-level request and response schemas for this endpoint live in the OpenAPI spec and the API reference.

Errors & limits

Errors use one consistent shape ( error.code, error.message, request_id). See Errors and Rate limits.

SDK

The TypeScript SDK (@zapinner/sdk) is coming soon. Until it ships, call the endpoint over HTTPS with the example above — the API is plain JSON and needs no dependency.

Try it

Select Analyze in the playground to see the request, or run it live with your API key.