# Agent Newsstand — Board Item Detail Lookup

> Agent Newsstand — Board Item Detail Lookup is a paid API for AI agents from api.agentnewsstand.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches full details for a specific opportunity or item by ID from the Agent Newsstand board, expanding on a compact listing entry

## Facts

- Endpoint: GET https://api.agentnewsstand.com/v1/board/item
- 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/agent-newsstand-board-item-detail-lookup-b0cd72c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-_0_D1Gr_pFdGIdHbrwAC

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 agent-newsstand-board-item-detail-lookup-b0cd72c6
```

Example prompt: Pull the full details for board item opportunity id 'opp_abc123' from Agent Newsstand — I want the complete record, not just the compact summary.

## When to prefer this

Use this endpoint after discovering a compact item ID from a board listing or search result on Agent Newsstand, when you need the full expanded detail record rather than the summary. Prefer this over general search endpoints when you already have a specific opportunity ID and need to resolve it to complete data.

## Known failure modes

- Missing or invalid 'id' query parameter returns a 400 or 422 validation error
- Unknown or expired opportunity id returns a 404 not found response
- Payment not provided or insufficient USDC results in a 402 Payment Required response
- Rate limiting or network issues may cause transient 429 or 5xx errors

## How this service works

15 pay-per-call endpoints for AI agents: tokenized-asset candles, SEC filings, earnings, US macro, web search, page reader, paywall unlock, screenshots. USDC on Base via x402. No API keys, no signup.

## Output

Returns the full, expanded record for the specified board item, including all data fields associated with that opportunity — such as market data, financial intelligence summaries, or web intelligence content — that were omitted from the compact listing representation.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "opportunity id from a compact item"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-newsstand-board-item-detail-lookup-b0cd72c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentnewsstand.com](https://www.zero.xyz/host/api.agentnewsstand.com/llms.txt)
