Skip to main content
POST
/
star
/
detail
/
{id}
Get full post detail with image and campaign lifecycle
curl --request POST \
  --url https://api.boosterberg.com-beta.com/v1/star/detail/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source_id": "987654321"
}
'
{
  "id": "<string>",
  "message": "<string>",
  "post_type": "<string>",
  "image_url": "<string>",
  "permalink": "<string>",
  "created_at": "<string>",
  "campaigns": [
    {
      "campaign_id": 123,
      "campaign_name": "<string>",
      "reason": "<string>",
      "conditions": [
        {
          "name": "<string>",
          "met": true,
          "unit": "<string>",
          "current": "<unknown>",
          "min_needed": "<unknown>",
          "max_limit": "<unknown>"
        }
      ],
      "boosted_at": "<string>",
      "stopped_at": "<string>",
      "spend": 123,
      "reach": 123,
      "impressions": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Facebook/Instagram post ID

Body

application/json
source_id
string

Facebook Page ID or Instagram Account ID

Example:

"987654321"

Response

200 - application/json

Full post detail with image and campaign data

id
string

Facebook/Instagram post ID

message
string

Post text (truncated to 200 chars)

post_type
string

Post type: photo, video, link, status, reel, carousel, etc.

platform
enum<string>

Facebook or Instagram

Available options:
fb,
ig
image_url
string

Post thumbnail URL (detail endpoint only, omitted from list for performance)

Direct link to the post

created_at
string

When the post was published

campaigns
object[]