# Animica Market Gaps API

> Animica Market Gaps API is a paid API for AI agents from animica.dev, paid per call via x402, $0.0018/call, status unknown (last checked 2026-09-15).

Identifies underserved capability gaps in a subject area by scanning the x402 API marketplace for thin or missing supply relative to merchant demand.

## Facts

- Endpoint: POST https://animica.dev/x402/market/gaps
- Price: $0.0018/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/animica-market-gaps-api-caebf8eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6xoBOvxsQ8oJmc2lawGFn

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 animica-market-gaps-api-caebf8eb -d '<json body>'
```

Example prompt: Can you scan the x402 API marketplace for gaps in the 'geocoding' area and show me up to 8 underserved capabilities, only counting terms used by at least 2 services?

## When to prefer this

Choose this endpoint when you need to discover where the x402/Animica API marketplace is underserved — i.e. which capabilities merchants describe wanting but few or no operators provide. It is specifically tuned for lexical matching over merchant prose, making it ideal for subject-domain gap analysis rather than general web search or competitor benchmarking.

## Known failure modes

- Missing required 'area' field returns a 400-level validation error
- Subject area too broad or too generic may return empty results or very common capabilities
- min_services set to 1 may surface idiosyncratic brand vocabulary rather than real market signals
- Overly restrictive max_suppliers may exclude all results; try raising it
- Payment of 0.006 USDC not submitted or rejected results in a 402 challenge response
- Area phrased as a hostname or URL instead of a subject domain may yield poor lexical matches

## How this service works

Animica Python Cloud: deploy a Python function to animica.dev, get a public endpoint, and earn ANM every time someone runs it. Free AI (OpenAI-compatible, no key), free scheduled Workers, and an 80/20 developer split.

## Output

A JSON object listing ranked capability gap rows for the requested subject area, each describing a thin or missing capability — terms used by merchants but served by few or no operators — along with counts of how many services mention it and how many distinct operators cover it, plus a payment confirmation block.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/animica-market-gaps-api-caebf8eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from animica.dev](https://www.zero.xyz/host/animica.dev/llms.txt)
