{
  "x402Version": 2,
  "id": 15180,
  "slug": "15180",
  "resource": "https://stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app/api/countries/list",
  "description": "List every supported country with its streaming services",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x26BBf0F6BC7a6492e4029327f2eF7c1363f9B4F6",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app",
  "lastUpdated": "2026-09-12T17:15:18.328Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-12T17:15:18.071Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app",
    "manifest_name": "stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}