# claw402 Twelve Data Economic Calendar

> claw402 Twelve Data Economic Calendar is a paid API for AI agents from claw402.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches scheduled economic events and indicators from the Twelve Data economic calendar, filtered by country, importance, and date range, payable with USDC via x402 protocol.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/twelvedata/economic-calendar
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-twelve-data-economic-calendar-b700b054
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KT745WNBXmbps1tXMI9BG

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 claw402-twelve-data-economic-calendar-b700b054
```

Example prompt: Show me all high-importance economic events for the United States from January 13 to January 20, 2025 — things like GDP releases, Fed meetings, or jobs reports.

## When to prefer this

Use this endpoint when you need structured economic calendar data — scheduled releases, central bank decisions, or macro indicators — for a specific country and date window, especially in a crypto-native agent context where you want to pay per-call in USDC without API key management. Prefer this over direct Twelve Data access when avoiding registration overhead is a priority.

## Known failure modes

- Empty data array if no events match the specified date range or country
- Payment failure if wallet lacks sufficient USDC balance (402 response)
- Invalid date format causing a bad request error
- Unrecognized country code or importance value returning empty results
- Network timeout or provider-side outage from Twelve Data

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object containing a list of economic calendar events matching the specified filters, including event names, dates, countries, and importance levels. The response has a status code field and a data array with event entries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string"
      },
      "end_date": {
       "type": "string"
      },
      "importance": {
       "type": "string"
      },
      "start_date": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-twelve-data-economic-calendar-b700b054/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
