In order to interact with this API you will need to read Getting Started with the API.

List publications

You will need to find your publication ID to use in most requests you'll want to use in the API.

GET /publications

Response Data Format

Returns an array of Publication dictionaries. Each Publication dictionary contains the following fields:

  • id - The ID of the publication; this is what you will use to make requests related to the specific publication.
  • name - The name of the publication.
  • key - The Curated subdomain for the publication.

Example Response Data

[
    {
        "id": 6335,
        "name": "GIF Highlight Reel",
        "key": "gifs"
    },
    {
        "id": 4513,
        "name": "Test Weekly",
        "key": "test"
    }
]