# AllInOneCents NFT API

> AllInOneCents NFT API is a paid API for AI agents from allin-onecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves NFT data and metadata based on a natural language or structured query via a unified micro-payment API

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/nft
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-nft-api-f320332d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZA_YbkNNmpdQJRW2dhFzj

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 allinonecents-nft-api-f320332d -d '<json body>'
```

Example prompt: Can you look up the NFT metadata and traits for Bored Ape #1234 using the AllInOneCents NFT endpoint?

## When to prefer this

Use this endpoint when you need quick, cheap ($0.01) NFT metadata lookups and are comfortable with a flexible natural-language query interface rather than a strictly typed schema. Ideal for agents that need broad NFT data access without committing to a more expensive or specialized NFT data provider.

## Known failure modes

- Invalid or unrecognized query returns empty data object with success: false
- NFT not found on supported chains returns null data
- Rate limiting or payment failure results in 402 or 429 error
- Malformed request body missing required 'query' field returns 400 validation error
- Unsupported NFT collection or chain may return incomplete results

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

A JSON object containing NFT data such as metadata, traits, ownership, collection info, and other token-level details, along with a success boolean indicating whether the query was fulfilled.

## Request schema (JSON Schema)

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

## 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/allinonecents-nft-api-f320332d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
