# Trust Your Coin — Agent Readiness API

> Trust Your Coin — Agent Readiness API is a paid API for AI agents from agent.trustyourcoin.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns agent-readiness capability scores and MiCA authorisation status for a named EU crypto venue, delivered via x402 micropayment.

## Facts

- Endpoint: GET https://agent.trustyourcoin.com/agent-readiness/%7Bvenue%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trust-your-coin-agent-readiness-api-dfa0ccff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S6rRWB8gq38yMYYaTMEH8

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 trust-your-coin-agent-readiness-api-dfa0ccff
```

Example prompt: What's the agent-readiness score and MiCA authorisation status for Bitvavo on Trust Your Coin?

## When to prefer this

Use this endpoint when you need structured, scored, machine-readable agent-readiness assessments of EU crypto venues — especially when MiCA compliance status matters or when you need to compare API capability flags (spend caps, key scope, sandbox, dry run) across exchanges. Prefer this over manually scraping exchange docs or the ESMA register when you need a normalised, comparable score across multiple venues.

## Known failure modes

- Unknown venue slug returns 404 or empty result
- Payment not completed via x402 returns 402 Payment Required
- Invalid lang parameter may default to nl or return an error
- Stale MiCA data if register has not been re-crawled recently
- Rate limiting if too many requests are made without payment

## How this service works

x402 micropayment gateway for agent-readiness capability scores and MiCA authorisation status of EU crypto venues, sourced from Trust Your Coin (trustyourcoin.com).

## Output

A JSON object containing the venue's name, slug, tier, composite/agent/customer scores with confidence values, detailed agent capability flags (sandbox, spend cap, dry run, key scope, tool count, agent layer type, structured JSON output, withdrawal scope separability, etc.), asset classes supported, API surfaces, and a list of MiCA authorisation records including service codes, authorisation status, and check date. Also includes the rubric version and a MiCA disclaimer noting it is a normalised mirror of the ESMA register.

## 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",
     "required": [
      "venue"
     ],
     "properties": {
      "venue": {
       "type": "string",
       "description": "Venue slug, e.g. bitvavo, bison, kraken"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "enum": [
        "nl",
        "de"
       ],
       "type": "string",
       "description": "Response language, defaults to nl"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "venue": {
   "name": "Bitvavo",
   "slug": "bitvavo",
   "tier": 1,
   "scores": {
    "agent": 8,
    "customer": 8.4,
    "composite": 8.2,
    "agentConfidence": 0.89,
    "safetyConfidence": 0.75
   },
   "capabilities": {
    "dryRun": "no",
    "sandbox": "yes",
    "spendCap": "yes",
    "toolCount": 42,
    "agentLayer": "official_readonly",
    "apiSurfaces": [
     "rest"
    ],
    "assetClasses": [
     "spot",
     "staking"
    ],
    "clientAgnostic": "yes",
    "deadMansSwitch": "no",
    "prebuiltSkills": "no",
    "mandatesApproval": "optional",
    "tradeNotifications": "yes",
    "keyScopeGranularity": "granular",
    "stableErrorTaxonomy": "yes",
    "keysReachableByModel": "no",
    "structuredJsonOutput": "yes",
    "segregatedAgentAccount": "no",
    "withdrawalScopeSeparable": "yes"
   },
   "venueCategory": "cex",
   "micaAuthorisations": [
    {
     "checkedAt": "2026-08-01T00:00:00.000Z",
     "serviceCodes": [
      "custody",
      "exchangeForCrypto"
     ],
     "authorisationStatus": "authorised"
    }
   ]
  },
  "rubricVersion": "v1",
  "micaDisclaimer": "Normalised mirror of the ESMA MiCA CASP register. Not an authoritative source — verify against the live register for compliance-critical decisions."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trust-your-coin-agent-readiness-api-dfa0ccff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.trustyourcoin.com](https://www.zero.xyz/host/agent.trustyourcoin.com/llms.txt)
