API: Explore

Retrieving a Category’s items

GET /v2/explore/categories/CATEGORY-ID/items

This API returns a paginated list of items. The list items’ sorting is based on an internal ranking algorithm that pushes the most popular and highest quality content to the top of the list.

Example

curl 'https://api.spreaker.com/v2/explore/categories/14/items?limit=3'
{
    "response": {
        "items": [
            {
                "show_id": 1537596,
                "title": "Game Scoop!",
                "site_url": "https://www.spreaker.com/show/ign-games-podcasts",
                "image_url": "https://d1bm3dmew779uf.cloudfront.net/large/96c1824a3f8a0f984f9bd1666f32866c.jpg",
                "image_original_url": "https://d3wo5wojvuv7l.cloudfront.net/images.spreaker.com/original/96c1824a3f8a0f984f9bd1666f32866c.jpg",
                "author_id": 8396681
            },
            {
                "show_id": 1537254,
                "title": "Giant Bombcast",
                "site_url": "https://www.spreaker.com/show/giant-bombcast",
                "image_url": "https://d1bm3dmew779uf.cloudfront.net/large/55bcd7fd1f74a0aa118950078148114f.jpg",
                "image_original_url": "https://d3wo5wojvuv7l.cloudfront.net/images.spreaker.com/original/55bcd7fd1f74a0aa118950078148114f.jpg",
                "author_id": 8395920
            },
            {
                "show_id": 1537599,
                "title": "Retronauts",
                "site_url": "https://www.spreaker.com/show/retronauts",
                "image_url": "https://d1bm3dmew779uf.cloudfront.net/large/89d6bba9663e909512478b22c2f8becf.jpg",
                "image_original_url": "https://d3wo5wojvuv7l.cloudfront.net/images.spreaker.com/original/89d6bba9663e909512478b22c2f8becf.jpg",
                "author_id": 8396683
            }
        ],
        "next_url": "https://api.spreaker.com/v2/explore/categories/14/items?last_id=1537599&limit=3"
    }
}