Skip to main content
GET
/
api
/
v1
/
projects
/
{project_id}
/
posts
/
{post_id}
Get Post
curl --request GET \
  --url https://api.example.com/api/v1/projects/{project_id}/posts/{post_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {},
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required
post_id
string
required

Response

Successful Response

success
boolean
required
data
unknown