# GameDataKit Mock Utility Endpoint

> GameDataKit Mock Utility Endpoint is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a mock dataset of people records (name, email, company) via a pay-per-call HTTP GET endpoint with no API key required.

## Facts

- Endpoint: GET https://api.borisinc.com/paid/util/mock
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamedatakit-mock-utility-endpoint-c7e95c2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_epce8EVnhfw_NmGqgttwa

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-mock-utility-endpoint-c7e95c2b
```

Example prompt: Pull me a sample batch of fake people records — names, emails, and company — using the GameDataKit mock endpoint, no API key needed, just pay per call.

## When to prefer this

Choose this endpoint when you need a quick, no-registration source of mock people records for prototyping, testing, or demos, and you want to pay only per call via x402 micropayment rather than managing an API subscription. It is not suitable for real contact enrichment or live Steam market data despite the brand name.

## Known failure modes

- Payment not included or insufficient — returns HTTP 402 with payment requirements
- Invalid HTTP method used (only GET/HEAD/DELETE supported) — returns 400 or 405
- Malformed input object — returns 400 with schema validation error
- Service temporarily unavailable — returns 500 or timeout

## 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 a 'kind' field (e.g. 'people'), a 'count' of records, and an array of 'records' each with first_name, last_name, email, and company fields.

## 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": {
  "kind": "people",
  "count": 10,
  "records": [
   {
    "email": "ava.smith@example.com",
    "company": "Nimbus Labs",
    "last_name": "Smith",
    "first_name": "Ava"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamedatakit-mock-utility-endpoint-c7e95c2b/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)
