Get post
GET /v1/accounts/{accountId}/posts/{postId}
GET
/v1/accounts/{accountId}/posts/{postId}
Get a specific post by ID.
Authorizations
Parameters
Path Parameters
accountId
required
string
Pinterest account ID
postId
required
string
Post ID
Responses
200
Post details
object
data
object
post
object
id
Post ID
string
status
Post status
string
mediaUrl
URL of the media file
string
mediaType
Type of media
string
title
Pin title
string
description
Pin description
string
url
Destination URL
string
boardId
Target board ID
string
altText
Alt text for accessibility
string
sendAt
Scheduled send time (Unix timestamp)
integer
sentAt
Actual send time (Unix timestamp)
integer
createdAt
Creation time (Unix timestamp)
integer
pinId
Pinterest pin ID (only present after publishing)
string
meta
object
requestId
Unique request ID for debugging
string
401
Authentication required or invalid API key
object
error
object
code
Error code
string
message
Error message
string
meta
object
requestId
Unique request ID for debugging
string
Example
{ "error": { "code": "UNAUTHORIZED", "message": "Invalid API key" }, "meta": { "requestId": "abc123" }}404
Resource not found
object
error
object
code
Error code
string
message
Error message
string
meta
object
requestId
Unique request ID for debugging
string
Example
{ "error": { "code": "NOT_FOUND", "message": "Account not found" }, "meta": { "requestId": "abc123" }}