ACME API Documentation logo

YouTube Categories

Retrieve the YouTube categories ids for a given region

GEThttps://api.acme.com/apipost/youTubeCategories/:region
Available on Premium, Business, Enterprise plans.

Retrieve the YouTube categories ids for a given region. The category ID can be set in the POST or PATCH /post endpoints.

For example, GET https://api.acme.com/api/youTubeCategories/US for the U.S. video categories.

YouTube only allows certainly categories to be assigned by a user. Only categories where assignable is true can be set in the POST or PATCH /post endpoints when creating a YouTube post.

Other categories, which are not assignable and have assignable: false, will result in an error.

Header Parameters

Authorizationstringrequired
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY
Profile-Keystring
Profile Key of a User Profile.

Format: Profile-Key: PROFILE_KEY

Path Parameters

regionstringrequired

Two letter country code of the region.

{
    "region": "US",
    "categories": [
        {
            "id": "1",
            "title": "Film & Animation",
            "assignable": true
        },
        {
            "id": "10",
            "title": "Music",
            "assignable": true
        },
        {
            "id": "15",
            "title": "Pets & Animals",
            "assignable": true
        },
        {
            "id": "17",
            "title": "Sports",
            "assignable": true
        },
        {
            "id": "18",
            "title": "Short Movies",
            "assignable": false
        },
        {
            "id": "19",
            "title": "Travel & Events",
            "assignable": true
        },
        {
            "id": "2",
            "title": "Autos & Vehicles",
            "assignable": true
        },
        {
            "id": "20",
            "title": "Gaming",
            "assignable": true
        },
        {
            "id": "21",
            "title": "Videoblogging",
            "assignable": false
        },
        {
            "id": "22",
            "title": "People & Blogs",
            "assignable": true
        },
        {
            "id": "23",
            "title": "Comedy",
            "assignable": true
        },
        {
            "id": "24",
            "title": "Entertainment",
            "assignable": true
        },
        {
            "id": "25",
            "title": "News & Politics",
            "assignable": true
        },
        {
            "id": "26",
            "title": "Howto & Style",
            "assignable": true
        },
        {
            "id": "27",
            "title": "Education",
            "assignable": true
        },
        {
            "id": "28",
            "title": "Science & Technology",
            "assignable": true
        },
        {
            "id": "29",
            "title": "Nonprofits & Activism",
            "assignable": true
        },
        {
            "id": "30",
            "title": "Movies",
            "assignable": false
        },
        {
            "id": "31",
            "title": "Anime/Animation",
            "assignable": false
        },
        {
            "id": "32",
            "title": "Action/Adventure",
            "assignable": false
        },
        {
            "id": "33",
            "title": "Classics",
            "assignable": false
        },
        {
            "id": "34",
            "title": "Comedy",
            "assignable": false
        },
        {
            "id": "35",
            "title": "Documentary",
            "assignable": false
        },
        {
            "id": "36",
            "title": "Drama",
            "assignable": false
        },
        {
            "id": "37",
            "title": "Family",
            "assignable": false
        },
        {
            "id": "38",
            "title": "Foreign",
            "assignable": false
        },
        {
            "id": "39",
            "title": "Horror",
            "assignable": false
        },
        {
            "id": "40",
            "title": "Sci-Fi/Fantasy",
            "assignable": false
        },
        {
            "id": "41",
            "title": "Thriller",
            "assignable": false
        },
        {
            "id": "42",
            "title": "Shorts",
            "assignable": false
        },
        {
            "id": "43",
            "title": "Shows",
            "assignable": false
        },
        {
            "id": "44",
            "title": "Trailers",
            "assignable": false
        }
    ]
}.
.