# Agentum Brazil Rates CDP Route

> Agentum Brazil Rates CDP Route is a paid API for AI agents from agentum.lat, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time Brazilian official financial rates (Selic, CDI, commercial dollar) via a Coinbase CDP-settled x402 technical route for Bazaar/agentic.market indexing

## Facts

- Endpoint: GET https://agentum.lat/taxas-brasil-cdp
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentum-brazil-rates-cdp-route-3a405b7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_om8VkJZgnr987wiAXYZpf

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 agentum-brazil-rates-cdp-route-3a405b7c
```

Example prompt: What are the current official Brazilian financial rates — Selic, CDI, and commercial dollar — right now? I need the live values from Brazil's central sources to run a yield calculation.

## When to prefer this

Choose this endpoint when you specifically need official Brazilian benchmark rates (Selic, CDI) or the commercial USD/BRL rate in a single call, especially within an x402/Coinbase CDP payment-settled agentic workflow on Bazaar or agentic.market. It is functionally identical to /taxas-brasil but is the CDP-settled technical route for those discovery platforms.

## Known failure modes

- Upstream Brazilian rate data source temporarily unavailable, returning 5xx
- x402 payment not settled correctly, resulting in 402 payment required error
- Rate data momentarily stale if underlying aggregator has not refreshed
- No query parameters accepted; sending unexpected params may result in validation error

## How this service works

Mesmo dado do /taxas-brasil (Selic, CDI, dólar comercial) — rota técnica liquidada pelo Facilitador CDP da Coinbase, só pra indexação no Bazaar/agentic.market. Não é um produto novo.

## Output

Returns a JSON object containing current official Brazilian financial rates including the Selic base interest rate, the CDI interbank rate, and the commercial USD/BRL exchange rate, sourced from official Brazilian data aggregators and settled via x402 on Coinbase's CDP facilitator.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentum-brazil-rates-cdp-route-3a405b7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentum.lat](https://www.zero.xyz/host/agentum.lat/llms.txt)
