Skip to main content
GET
/
post
/
{identifier}
Get post by ID
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/post/{identifier} \
  --header 'X-Team-ApiKey: <api-key>'
{
  "id": "post_XyZ123aBc456DeF789GhI",
  "name": "Summer Product Launch",
  "postTitle": "Introducing Our New Summer Collection",
  "postDescription": "<string>",
  "postCategory": "post_category_YzS1wOU20yw87UUHKxMzwn",
  "member": "member_JkL012MnO345PqR678",
  "postThumbnail": "<string>",
  "isPublished": true,
  "includedTags": [
    "post_tag_123XyZ456AbC"
  ],
  "postSlug": "introducing-summer-collection",
  "status": 123,
  "pageTitle": "<string>",
  "pageDescription": "<string>",
  "pageKeywords": "<string>",
  "socialTitle": "<string>",
  "socialDescription": "<string>",
  "socialImageUrl": "<string>",
  "created": "2023-11-07T05:31:56Z",
  "updated": "2023-11-07T05:31:56Z"
}

Authorizations

X-Team-ApiKey
string
header
required

Team API key for authentication. Find your API key in SendX Settings → Team API Key.

Example:

X-Team-ApiKey: your_team_api_key_here

Path Parameters

identifier
string
required

Resource identifier with prefix (e.g., contact_BnKjkbBBS500CoBCP0oChQ)

Format: <prefix>_<22-character-id>

Example:

"contact_BnKjkbBBS500CoBCP0oChQ"

Response

✅ Post retrieved successfully

id
string
Example:

"post_XyZ123aBc456DeF789GhI"

name
string
Example:

"Summer Product Launch"

postTitle
string
Example:

"Introducing Our New Summer Collection"

postDescription
string
postCategory
string
Example:

"post_category_YzS1wOU20yw87UUHKxMzwn"

member
string
Example:

"member_JkL012MnO345PqR678"

postThumbnail
string<uri>
isPublished
boolean
includedTags
string[]
postSlug
string
Example:

"introducing-summer-collection"

status
integer
pageTitle
string
pageDescription
string
pageKeywords
string
socialTitle
string
socialDescription
string
socialImageUrl
string<uri>
created
string<date-time>
updated
string<date-time>
I