Get Single Browse Category
CategoryRetrieveResponse Browse.Categories.Retrieve(CategoryRetrieveParamsparameters, CancellationTokencancellationToken = default)
GET/browse/categories/{category_id}
Get a single category used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).
Parameters
Returns
Get Single Browse Category
CategoryRetrieveParams parameters = new() { CategoryID = "dinner" };
var category = await client.Browse.Categories.Retrieve(parameters);
Console.WriteLine(category);{
"id": "equal",
"href": "href",
"icons": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "EQUAL",
"published": true
}Returns Examples
{
"id": "equal",
"href": "href",
"icons": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "EQUAL",
"published": true
}