# GameDataKit Platform Spec Lookup

> GameDataKit Platform Spec Lookup is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns platform-specific video format specifications (resolution, aspect ratio, caption limits, max duration) for a given social media platform

## Facts

- Endpoint: GET https://api.borisinc.com/paid/util/platform-spec
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamedatakit-platform-spec-lookup-ca086d70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FGkAg1jmt0SQK1ABfRgE8

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-platform-spec-lookup-ca086d70
```

Example prompt: What are the video format specs for TikTok — resolution, aspect ratio, max duration, and caption limit?

## When to prefer this

Use this endpoint when you need authoritative, up-to-date platform video specification data (resolution, aspect ratio, duration, caption limits) for content targeting TikTok or similar platforms, especially in automated content pipelines where format compliance is required and you want pay-per-call access without managing API keys.

## Known failure modes

- Unsupported or unrecognized platform name returns empty or error response
- Missing required 'input' body fields causes schema validation error
- Non-GET/HEAD/DELETE HTTP method in the input object causes rejection
- Payment not processed via x402 results in 402 response blocking the call

## 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

A JSON object containing the platform's video format metadata, including type (e.g. 'video'), aspect ratio (e.g. '9:16'), platform name (e.g. 'tiktok'), resolution (e.g. '1080x1920'), max duration in seconds (e.g. 600), and caption character limit (e.g. 2200).

## 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": {
  "type": "video",
  "aspect": "9:16",
  "platform": "tiktok",
  "resolution": "1080x1920",
  "max_seconds": 600,
  "caption_limit": 2200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamedatakit-platform-spec-lookup-ca086d70/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)
