# GameDataKit Web Content Extractor

> GameDataKit Web Content Extractor is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches and extracts clean text content from a URL via HTTP GET, returning chunked readable text with word count metadata

## Facts

- Endpoint: GET https://api.borisinc.com/paid/util/extract
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamedatakit-web-content-extractor-7735640a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iigSEl91FEieKcX37_RQ8

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 gamedatakit-web-content-extractor-7735640a
```

Example prompt: Can you fetch and extract the clean readable text from this URL using a GET request and give me the chunked content with the word count?

## When to prefer this

Use this endpoint when you need to extract clean, readable text from a publicly accessible URL via a simple HTTP GET request and want the result pre-chunked with word count metadata. It is ideal for lightweight, pay-per-call web content extraction without needing an account or API key. Prefer alternatives if you need JavaScript rendering, authenticated access, or structured data extraction beyond plain text.

## Known failure modes

- URL is unreachable or returns a non-200 status — extraction fails with an error
- URL points to a non-text resource (PDF, image, binary) — may return empty or garbled chunks
- Rate limiting or payment failure via x402 — request blocked before extraction
- JavaScript-rendered pages may not be fully extracted since only static HTTP GET is performed
- Very large pages may result in unexpected truncation or high chunk counts

## How this service works

Live Steam best-sellers, deals, per-app detail and IGDB metadata, Twitch hype scores, and agent utilities for verification and extraction. From $0.001 a call, free samples on every endpoint, auth-then-capture. MCP and HTTP.

## Output

Returns a JSON object containing the page title, an array of text chunks (each with an index, text content, and character count), total word count, and total chunk count. The content is cleaned and stripped of HTML noise.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "title": "Example",
  "chunks": [
   {
    "i": 0,
    "text": "clean article text...",
    "chars": 1000
   }
  ],
  "word_count": 1200,
  "chunk_count": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamedatakit-web-content-extractor-7735640a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.borisinc.com](https://www.zero.xyz/host/api.borisinc.com/llms.txt)
