# AllInOneCents Unemployment Data API

> AllInOneCents Unemployment Data 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-14).

Returns unemployment data and statistics in response to a natural language query, priced at $0.01 per call via x402 micropayment.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/unemployment
- 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-unemployment-data-api-ad5d3aad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jBwl7bRxCBAWfToq6FAOI

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-unemployment-data-api-ad5d3aad -d '<json body>'
```

Example prompt: What is the current US unemployment rate, and can you also pull the unemployment figures for the last 12 months so I can see the trend?

## When to prefer this

Choose this endpoint when you need quick, cheap ($0.01) programmatic access to unemployment or labor market data via a simple natural language query, especially in agentic workflows that already support x402 micropayments on Base or Solana.

## Known failure modes

- Missing or empty query field returns validation error
- Ambiguous or unsupported query may return empty or null data object
- Payment failure via x402 returns 402 Payment Required
- Service downtime or upstream data unavailability returns 5xx error
- Malformed JSON body returns 400 Bad Request

## 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 with a success boolean and a data object containing unemployment statistics or labor market metrics relevant to the query string provided.

## 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-unemployment-data-api-ad5d3aad/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)
