API: Miscellaneous

List of Show Categories

GET /v2/show-categories

Lists all the show categories available. This API supports localization.

Example

curl https://api.spreaker.com/v2/show-categories
{
  "response": {
    "categories": [
      {
        "category_id": 50,
        "name": "News & Information",
        "permalink": "information",
        "level": 1
      },
      {
        "category_id": 58,
        "name": "Current Events",
        "permalink": "current-events",
        "level": 2
      },
      ...
    ]
  }
}

List of Google Play Categories

GET /v2/googleplay-categories

Lists all the Google Play categories available.

Example

curl https://api.spreaker.com/v2/googleplay-categories
{
    "response": {
        "googleplay_categories": [
            {
                "category_id": 1,
                "name": "Arts",
                "level": 1
            },
            {
                "category_id": 2,
                "name": "Business",
                "level": 1
            },
            {
                "category_id": 3,
                "name": "Comedy",
                "level": 1
            },
            {
                "category_id": 4,
                "name": "Education",
                "level": 1
            },
            {
                "category_id": 5,
                "name": "Games & Hobbies",
                "level": 1
            },
            {
                "category_id": 6,
                "name": "Government & Organizations",
                "level": 1
            },
            {
                "category_id": 7,
                "name": "Health",
                "level": 1
            },
            {
                "category_id": 8,
                "name": "Kids & Family",
                "level": 1
            },
            {
                "category_id": 9,
                "name": "Music",
                "level": 1
            },
            {
                "category_id": 10,
                "name": "News & Politics",
                "level": 1
            },
            {
                "category_id": 11,
                "name": "Religion & Spirituality",
                "level": 1
            },
            {
                "category_id": 12,
                "name": "Science & Medicine",
                "level": 1
            },
            {
                "category_id": 13,
                "name": "Society & Culture",
                "level": 1
            },
            {
                "category_id": 14,
                "name": "Sports & Recreation",
                "level": 1
            },
            {
                "category_id": 16,
                "name": "Technology",
                "level": 1
            },
            {
                "category_id": 15,
                "name": "TV & Film",
                "level": 1
            }
        ]
    }
}

List of Show Languages

GET /v2/show-languages

Lists all the show languages available. This API supports localization.

Example

curl https://api.spreaker.com/v2/show-languages
{
  "response": {
    "languages": {
      "sq": "Albanian",
      "ar": "Arabic",
      "be": "Belarusian",
      "bg": "Bulgarian",
      "zh": "Chinese",
      "hr": "Croatian",
      "cs": "Czech",
      "da": "Danish",
      "nl": "Dutch",
      "en": "English",
      "et": "Estonian",
      "fi": "Finnish",
      "fr": "French",
      "de": "German",
      "el": "Greek",
      "hu": "Hungarian",
      "is": "Icelandic",
      "it": "Italian",
      "ja": "Japanese",
      "lt": "Lithuanian",
      "mk": "Macedonian",
      "no": "Norwegian",
      "pl": "Polish",
      "pt": "Portuguese",
      "ro": "Romanian",
      "ru": "Russian",
      "sr": "Serbian",
      "sk": "Slovak",
      "sl": "Slovenian",
      "es": "Spanish",
      "sv": "Swedish",
      "tr": "Turkish",
      "uk": "Ukrainian"
    }
  }
}