Fetch a single offer

Fetch a single offer by offer_id.

Path Parameters
  • offer_id
    Type: string
    required

    Offer identifier.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/offer/{offer_id}
curl 'https://sandbox.billogram.com/api/v2/offer/{offer_id}' \
  --header 'Authorization: Basic username:password'
{
  "status": "OK",
  "data": {
    "offer_id": "banner001",
    "type": "banner",
    "title": "string",
    "text": "string",
    "media": {
      "picture": "string",
      "picture_type": "image/png"
    },
    "link_text": "string",
    "created_at": "2026-04-29T11:19:15.647Z",
    "updated_at": "2026-04-29T11:19:15.647Z",
    "info_link": "string"
  }
}