api/README.md
Aleksandr Statciuk 399db256c4 Update README.md
2022-01-24 18:58:48 +03:00

1.3 KiB

API (beta)

Work in Progress

Channels

https://iptv-org.github.io/api/channels.json
[
  ...
  {
    "name": "CNN",
    "id": "CNN.us",
    "country": "US",
    "languages": [
      "eng"
    ],
    "broadcast_area": [
      "c/US"
    ],
    "categories": [
      "news"
    ],
    "logo": "https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cnn.png"
  },
  ...
]

Categories

https://iptv-org.github.io/api/categories.json
[
  ...
  {
    "name": "Documentary",
    "slug": "documentary",
    "is_nsfw": false
  },
  ...
]

Countries

https://iptv-org.github.io/api/countries.json
[
  ...
  {
    "name": "United Kingdom",
    "code": "UK",
    "lang": "eng",
    "flag": "🇬🇧"
  },
  ...
]

Subdivisions

https://iptv-org.github.io/api/subdivisions.json
[
  ...
  {
    "name": "Ontario",
    "code": "CA-ON",
    "country": "CA"
  },
  ...
]

Languages

https://iptv-org.github.io/api/languages.json
[
  ...
  {
    "name": "French",
    "code": "fra"
  },
  ...
]

Regions

https://iptv-org.github.io/api/regions.json
[
  ...
  {
    "name": "Maghreb",
    "code": "MAGHREB",
    "countries": [
      "DZ",
      "LY",
      "MA",
      "MR",
      "TN"
    ]
  },
  ...
]