# trabotpro.it Crypto News Article Unlocker

> trabotpro.it Crypto News Article Unlocker is a paid API for AI agents from trabotpro.it, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Unlocks and returns the full body text of a crypto news article identified by its catalog ID, via x402 micropayment.

## Facts

- Endpoint: GET https://trabotpro.it/api/a2a/x402/news/unlock
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trabotpro-it-crypto-news-article-unlocker-e222195c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g0SmmHFHigj07cVCumAtI

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 trabotpro-it-crypto-news-article-unlocker-e222195c
```

Example prompt: Fetch the full article text for crypto news item ID 4821 from trabotpro — I need the complete body, not just the headline.

## When to prefer this

Use this endpoint when an agent needs the complete, full-text body of a specific crypto news article identified from the trabotpro catalog (via /api/a2a/news/catalog), and is willing to pay $0.15 USDC per article unlock via x402 micropayment. Prefer this over scraping source links directly when a clean, structured JSON response with full body text is needed for downstream analysis or summarization.

## Known failure modes

- Invalid or non-existent news_id returns an error or empty result
- Payment failure via x402 prevents article unlock
- Missing required news_id query parameter returns 400 or validation error
- Article no longer available in catalog returns 404
- Network timeout or service unavailability returns 5xx error

## How this service works

Unlock full crypto news article text (RSS ingest) for autonomous agents.

## Output

Returns a JSON object containing the article's numeric ID, title, full body text, source link URL, and a paid_via field confirming the x402 micropayment method used to unlock it.

## 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": [
      "type",
      "method",
      "news_id"
     ],
     "properties": {
      "type": {
       "enum": [
        "http"
       ],
       "type": "string"
      },
      "method": {
       "enum": [
        "GET"
       ],
       "type": "string"
      },
      "news_id": {
       "type": "string",
       "description": "Numeric id from GET /api/a2a/news/catalog"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "integer"
      },
      "title": {
       "type": "string"
      },
      "paid_via": {
       "type": "string"
      },
      "body_full": {
       "type": "string"
      },
      "source_link": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trabotpro-it-crypto-news-article-unlocker-e222195c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trabotpro.it](https://www.zero.xyz/host/trabotpro.it/llms.txt)
