# 402.com.tr Historical Token Price

> 402.com.tr Historical Token Price is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns the USD price of a Base network token on a specific historical date using Covalent price data

## Facts

- Endpoint: GET https://402.com.tr/api/x402/historical-price
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-historical-token-price-d47fee41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gNLw-y7IpJbQfcp05hnD0

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 402-com-tr-historical-token-price-d47fee41
```

Example prompt: What was the USD price of the Base token at contract address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on 2024-03-15?

## When to prefer this

Use this endpoint when you need the USD price of a Base network token on a specific past date — ideal for cost basis calculations, tax reporting, P&L analysis, or backtesting trading strategies. Prefer this over live-price endpoints when historical accuracy on a particular calendar date is required.

## Known failure modes

- Invalid or non-existent token contract address returns an error or null price
- Date in wrong format (not YYYY-MM-DD) causes a validation error
- Date too far in the past or future may return no price data
- Token not indexed by Covalent on Base returns no result
- Network or payment failure results in no response

## How this service works

Returns the USD price of a Base token on a specific date (YYYY-MM-DD) via Covalent. For agents computing cost basis, backtests, or P&L.

## Output

The USD price of the specified Base token on the requested date, sourced from Covalent's historical price data — useful for cost basis, P&L, or backtesting calculations.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address",
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Date (YYYY-MM-DD)"
      },
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-historical-token-price-d47fee41/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
