Post-match recap authored once the final whistle blows, addressable by event, ev
Post-match recap authored once the final whistle blows, addressable by event, event URN, or team and opponent on a date.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
298 msmedian answer time
$0.4listed price per call
$0.4price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agents.machina.gg/world-cup/v1/skills/match-recap
| Category | Everything else |
|---|---|
| Provider host | agents.machina.gg |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.4 | 298 ms |
Example input (from the provider)
{
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}