GET
/
blogs
/
v3
/
topics
/
{topic-id}
Get a blog topic by ID
curl --request GET \
  --url https://api.hubapi.com/blogs/v3/topics/{topic-id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 349001328,
  "portalId": 62515,
  "name": "api-docs",
  "slug": "api-docs",
  "description": "",
  "created": 1381896200000,
  "updated": 1381896200000,
  "deletedAt": 0,
  "totalPosts": null,
  "livePosts": null,
  "lastUsed": null,
  "associatedBlogIds": [],
  "publicUrl": null,
  "status": "inactive"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

topic-id
string
required

Unique identifier for a particular topic

Query Parameters

casing
enum<string>

Use the casing=snake parameter to change the API's casing for returned JSON fields (below) to snake_case, rather than camelCase, which is the default. This option is provided for backwards-compatibility and ease of migration from Content v2 APIs, which used snake_case.

Available options:
snake

Response

200
application/json

successful operation

The response is of type object.