# Chainlink Data Streams Latest Reports

> Chainlink Data Streams Latest Reports is a paid API for AI agents from agents.chain.link, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches the latest Data Streams price feed report(s) for one or more Chainlink feed IDs, returning signed on-chain-verifiable price data.

## Facts

- Endpoint: GET https://agents.chain.link/v1/streams/reports/latest
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainlink-data-streams-latest-reports-b711e7a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SSZzVS2E19L6VJhgRTJHd

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 chainlink-data-streams-latest-reports-b711e7a4
```

Example prompt: What's the latest Chainlink Data Streams price report for the ETH/USD feed — the feed ID is 0x00027bbaff688c906a3df6d601f5f4be2ca7a50bb2e7733c9a7b69e41ce74003?

## When to prefer this

Use this endpoint when an AI agent needs real-time, cryptographically signed price data from Chainlink's Data Streams for use in DeFi applications, smart contracts, or any workflow requiring verifiable on-chain price feeds. Prefer this over generic REST price APIs when the downstream use case requires Chainlink's signed, verifiable report format (not just a raw number). Best for agents operating in Web3 or blockchain contexts needing low-latency oracle data.

## Known failure modes

- Invalid or malformed feedID (not 0x-prefixed) returns an error
- Unknown or unsupported feed ID returns no data or 404
- Missing required feedID or feedIDs parameter causes a bad request error
- Payment not included or insufficient USDC (0.005) triggers 402 Payment Required
- Timestamp too far in the past or future may return no matching report
- Rate limiting or service unavailability returns 429 or 503

## How this service works

Chainlink For Agents: query Data Streams reports.

## Output

Returns the latest signed Data Streams report for the requested feed ID(s), including current price, bid/ask, timestamp, and cryptographic signatures that can be used to verify the data on-chain. Multiple feed reports may be returned if comma-separated feedIDs are provided.

## 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",
     "properties": {
      "feedID": {
       "type": "string",
       "description": "Single 0x-prefixed Data Streams feed ID"
      },
      "feedIDs": {
       "type": "string",
       "description": "Comma-separated 0x-prefixed Data Streams feed IDs"
      },
      "timestamp": {
       "type": "string",
       "description": "Unix timestamp in seconds"
      }
     }
    }
   },
   "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/chainlink-data-streams-latest-reports-b711e7a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.chain.link](https://www.zero.xyz/host/agents.chain.link/llms.txt)
