List every supported country with its streaming services
List every supported country with its streaming services
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated
Provider
stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x26BBf0F6BC7a6492e4029327f2eF7c1363f9B4F6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"include_addons": false,
"include_images": false,
"output_language": "en"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"count": 1,
"countries": [
{
"countryCode": "us",
"name": "United States",
"services": [
{
"addons": [],
"homePage": "https://www.netflix.com",
"id": "netflix",
"imageSet": {
"darkThemeImage": "https://example.com/netflix-dark.png",
"lightThemeImage": "https://example.com/netflix-light.png",
"whiteImage": "https://example.com/netflix-white.png"
},
"name": "Netflix",
"streamingOptionTypes": {
"addon": false,
"buy": false,
"free": false,
"rent": false,
"subscription": true
},
"themeColorCode": "#e50914"
}
]
}
]
},
"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": {
"include_addons": {
"default": false,
"description": "Include services[].addons[] (Apple-TV Channels etc). Default false (strips ~80% of payload).",
"type": "boolean"
},
"include_images": {
"default": false,
"description": "Include service logo imageSet URLs. Default false.",
"type": "boolean"
},
"output_language": {
"description": "ISO 639-1 language code",
"type": "string"
}
},
"required": [
"include_images",
"include_addons"
],
"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": {
"count": {
"type": "number"
},
"countries": {
"items": {
"additionalProperties": {},
"properties": {
"countryCode": {
"type": "string"
},
"name": {
"type": "string"
},
"services": {
"items": {
"additionalProperties": {},
"properties": {
"addons": {
"default": [],
"items": {
"additionalProperties": {},
"properties": {
"homePage": {
"type": "string"
},
"id": {
"type": "string"
},
"imageSet": {
"additionalProperties": {},
"properties": {
"darkThemeImage": {
"type": "string"
},
"lightThemeImage": {
"type": "string"
},
"whiteImage": {
"type": "string"
}
},
"required": [
"lightThemeImage",
"darkThemeImage",
"whiteImage"
],
"type": "object"
},
"name": {
"type": "string"
},
"themeColorCode": {
"type": "string"
}
},
"required": [
"id",
"name",
"homePage",
"themeColorCode",
"imageSet"
],
"type": "object"
},
"type": "array"
},
"homePage": {
"type": "string"
},
"id": {
"type": "string"
},
"imageSet": {
"additionalProperties": {},
"properties": {
"darkThemeImage": {
"type": "string"
},
"lightThemeImage": {
"type": "string"
},
"whiteImage": {
"type": "string"
}
},
"required": [
"lightThemeImage",
"darkThemeImage",
"whiteImage"
],
"type": "object"
},
"name": {
"type": "string"
},
"streamingOptionTypes": {
"additionalProperties": false,
"properties": {
"addon": {
"type": "boolean"
},
"buy": {
"type": "boolean"
},
"free": {
"type": "boolean"
},
"rent": {
"type": "boolean"
},
"subscription": {
"type": "boolean"
}
},
"required": [
"subscription",
"buy",
"rent",
"free",
"addon"
],
"type": "object"
},
"themeColorCode": {
"type": "string"
}
},
"required": [
"id",
"name",
"homePage",
"themeColorCode",
"imageSet",
"streamingOptionTypes",
"addons"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"countryCode",
"name",
"services"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"countries",
"count"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app/api/countries/list" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app/api/countries/list");
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://stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app/api/countries/list")
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/15180.json, and this resource appears in /discovery/resources and /discovery/search.