Post-match recap authored once the final whistle blows, addressable by event, event URN, o
Post-match recap authored once the final whistle blows, addressable by event, event URN, or team and opponent on a date.
400000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-03
updated
Provider
agents.machina.gg · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x348ac9e3b010ba2300ba9a7bcfe5ae592b9fcfaa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "400000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "Identify the fixture in plain English, pass `event` free text, or `team` (+ optional `opponent` + `date`). No URNs or provider ids needed; unresolved inputs return an explicit warning, ambiguous ones return candidates. The response echoes the resolved `event_urn` (and `resolved_fixture`) so follow-up calls can chain on it. Recaps are authored only once the match has finished.",
"properties": {
"date": {
"description": "Optional fixture date as YYYY-MM-DD.",
"format": "date",
"type": "string"
},
"event": {
"description": "Plain-English fixture, e.g. \"Brazil vs Morocco\" (also accepts \"v\" / \"x\" / \"-\" separators).",
"type": "string"
},
"event_urn": {
"description": "Canonical event URN, if you already have one (every fixture response echoes it). Plain-English inputs above make this optional.",
"type": "string"
},
"opponent": {
"description": "Optional opponent name to disambiguate the fixture.",
"type": "string"
},
"team": {
"description": "Team name, e.g. \"Morocco\". Use with optional `opponent` and `date`.",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"zeroclick": {
"info": {
"payment": {
"amountUsd": "0.400000",
"id": "apay_UrjiMLG6zOlRAEJ3NpnT1"
},
"requestId": "zcreq_QiaU_-13U98tL6XCj6b_M",
"service": "finished-content"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"agentId": {
"type": "string"
},
"payment": {
"properties": {
"amountUsd": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"amountUsd"
],
"type": "object"
},
"requestId": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": [
"payment"
],
"type": "object"
}
}
}Use it
curl
curl "https://agents.machina.gg/world-cup/v1/skills/match-recap" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agents.machina.gg/world-cup/v1/skills/match-recap");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agents.machina.gg/world-cup/v1/skills/match-recap")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8505.json, and this resource appears in /discovery/resources and /discovery/search.