Skip to main content
GET https://cds.thepublive.com/publisher/{publisher_id}/content-types/ Returns all content types used on your publication. Content types define the different formats of content available (e.g., Article, Video, Web Story).

Headers

NameTypeRequiredDescription
usernamestringYesAPI Key
passwordstringYesAPI Secret

Response Fields

Each content type contains:
FieldTypeDescription
namestringContent type display name
api_slugstringAPI-friendly slug for single item queries
api_collections_slugstringAPI-friendly slug for collection queries
created_atdatetimeWhen the content type was created
updated_atdatetimeWhen the content type was last updated
{
  "status": "ok",
  "data": [
    {
      "name": "Article",
      "api_slug": "article",
      "api_collections_slug": "articles",
      "created_at": "2025-01-01T00:00:00Z",
      "updated_at": "2025-01-01T00:00:00Z"
    },
    {
      "name": "Video",
      "api_slug": "video",
      "api_collections_slug": "videos",
      "created_at": "2025-01-01T00:00:00Z",
      "updated_at": "2025-01-01T00:00:00Z"
    },
    {
      "name": "Web Story",
      "api_slug": "web-story",
      "api_collections_slug": "web-stories",
      "created_at": "2025-01-01T00:00:00Z",
      "updated_at": "2025-01-01T00:00:00Z"
    }
  ],
  "message": ""
}