Check GitHub's official status source for current incidents, component health, and schedul
Check GitHub's official status source for current incidents, component health, and scheduled maintenance before an agent retries, deploys, or escalates.
5000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-14
updated
Provider
agentbodega.store · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xe8799C2dedA78ECcEB329D1E8FE9F110bf55E4F8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "4tWJRwNyhGr88QTiV2yzMoGsaxZiCSRDepf9JTdBEgyi",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"includeComponents": true
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"success": true
},
"type": "json"
}
},
"routeTemplate": "/api/status/github",
"schema": {
"properties": {
"input": {
"properties": {
"body": {
"contentType": "application/json",
"fieldCount": 5,
"fields": [
{
"name": "includeComponents",
"required": false,
"type": "boolean"
},
{
"name": "includeIncidentDetails",
"required": false,
"type": "boolean"
},
{
"name": "incidentLimit",
"required": false,
"type": "integer"
},
{
"name": "component",
"required": false,
"type": "string"
},
{
"name": "components",
"required": false,
"type": "array"
}
],
"omittedFieldCount": 0,
"optionalPreview": [
"includeComponents",
"includeIncidentDetails",
"incidentLimit",
"component",
"components"
],
"required": []
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://agentbodega.store/api/status/github" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agentbodega.store/api/status/github");
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://agentbodega.store/api/status/github")
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/6368.json, and this resource appears in /discovery/resources and /discovery/search.