Buy a live status line install for a team
Buy a live status line install for a team. Returns the client script file(s), config snippets, and step-by-step instructions for the installing agent to execute locally. The response token makes the line endpoint work and re-downloading the same bundle via /api/bundle is free — never pay twice for a retry.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
scorestatus.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3205859b58fcb55ac6c30a01bd09c7ed371323b7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"league": "mlb",
"target": "claude-code",
"team": "chc"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"bundleUrl": "https://scorestatus.dev/api/bundle?token=ss_...",
"files": [
{
"content": "#!/usr/bin/env bash\n...",
"mode": "755",
"path": "~/.scorestatus/scorestatus-mlb-chc.sh"
}
],
"installId": "9b710a076c0d",
"instructions": "## Install: Claude Code status line...\n1. Write files[0]...",
"league": "mlb",
"lineUrl": "https://scorestatus.dev/api/line?league=mlb&team=chc&token=ss_...",
"target": "claude-code",
"team": "chc",
"token": "ss_bWxiLmNoYy5jbGF1ZGUtY29kZS45YjcxMGEwNzZjMGQ.9k2fX1aB"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"format": {
"description": "'plain' strips ANSI colors (tmux/starship)",
"enum": [
"ansi",
"plain"
],
"type": "string"
},
"league": {
"description": "League key: mlb, nba, wnba, nfl, nhl, mls, epl, laliga, bundesliga, seriea, ligue1, ucl, worldcup",
"type": "string"
},
"target": {
"default": "claude-code",
"description": "Where the status line will be installed",
"enum": [
"claude-code",
"codex",
"generic"
],
"type": "string"
},
"team": {
"description": "Team abbreviation, nickname, or full name (e.g. 'chc', 'Cubs', 'Chicago Cubs')",
"minLength": 1,
"type": "string"
},
"tz": {
"description": "IANA timezone for pregame times (e.g. 'America/Chicago'); defaults to US Eastern",
"type": "string"
}
},
"required": [
"league",
"team",
"target"
],
"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"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"bundleUrl": {
"description": "Free re-download of this exact bundle — never pay twice",
"type": "string"
},
"files": {
"items": {
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"mode": {
"description": "chmod mode, e.g. 755",
"type": "string"
},
"path": {
"description": "Where to write the file on the user's machine (~ = home)",
"type": "string"
}
},
"required": [
"path",
"mode",
"content"
],
"type": "object"
},
"type": "array"
},
"installId": {
"type": "string"
},
"instructions": {
"description": "Markdown install steps for the installing agent to execute",
"type": "string"
},
"league": {
"type": "string"
},
"lineUrl": {
"description": "The status-line endpoint the installed client polls",
"type": "string"
},
"target": {
"type": "string"
},
"team": {
"type": "string"
},
"token": {
"description": "Install token; baked into the client script's line URL",
"type": "string"
}
},
"required": [
"installId",
"token",
"league",
"team",
"target",
"lineUrl",
"bundleUrl",
"files",
"instructions"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://scorestatus.dev/api/install" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://scorestatus.dev/api/install");
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://scorestatus.dev/api/install")
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/5471.json, and this resource appears in /discovery/resources and /discovery/search.