# ScriptMasterLabs Token Details API

> ScriptMasterLabs Token Details API is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns detailed information about a specific cryptocurrency token by ID, settled via x402 micropayment on Base in USDC.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/token-details
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-token-details-api-9cffaad3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iYUCR9pPLBesFMMJs4MHE

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 scriptmasterlabs-token-details-api-9cffaad3
```

Example prompt: Can you pull up the token details for bitcoin using the ScriptMasterLabs x402 API?

## When to prefer this

Use this endpoint when you need quick, micropayment-priced token metadata lookups for a specific cryptocurrency by ID (e.g. 'bitcoin', 'ethereum') and can pay per call in USDC on Base via x402. Best suited for AI agents that already handle x402 payment flows and need lightweight crypto data without a subscription.

## Known failure modes

- Token ID not found or invalid — returns an error or empty result
- Missing required 'id' query parameter — returns a validation error
- Payment settlement failure via x402 — HTTP 402 returned if USDC payment on Base is not accepted
- Service unavailable on Render hosting — potential downtime or cold-start latency
- Ambiguous token ID (e.g. non-unique symbol) — may return unexpected result

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

Returns a JSON object containing detailed information about the requested cryptocurrency token, including metadata such as name, symbol, and potentially market and chain data. The exact fields depend on the token ID provided; the response schema is open-ended.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "default": "bitcoin",
       "example": "bitcoin"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-token-details-api-9cffaad3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
