# AllInOneCents GDP Lookup

> AllInOneCents GDP Lookup is a paid API for AI agents from allinonecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves GDP (Gross Domestic Product) macroeconomic data for a given query via a low-cost unified API endpoint.

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/gdp
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-gdp-lookup-f238f8d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NbTKQ2kqAvigbU1ksax56

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-gdp-lookup-f238f8d8 -d '<json body>'
```

Example prompt: What is the current GDP of the United States? Pull the macro data from the AllInOneCents GDP endpoint.

## When to prefer this

Choose this endpoint when you need low-cost ($0.01) programmatic access to GDP macroeconomic data and are already using or evaluating the AllInOneCents unified API platform. Best suited for lightweight lookups rather than deep analytical datasets.

## Known failure modes

- Missing or empty 'query' field returns validation error
- Unrecognized country or region name may return empty or null data
- Service downtime may return HTTP 5xx errors
- Payment not processed results in HTTP 402 response
- Ambiguous query string may return unexpected or partial 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

Returns a JSON object with a 'success' boolean and a 'data' object containing GDP-related macroeconomic information corresponding to the query submitted.

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