1. Offers
Target Circle API
  • Publisher API
    • Ads
      • List vouchers
    • Offers
      • List offers
        GET
    • Schemas
      • Transaction
        • TransactionType
      • Offer
        • OfferStatus
        • OfferReview
        • OfferFrequentlyAskedQuestion
        • OfferCategory
        • OfferVertical
        • OfferTracking
        • OfferTargetedCountry
        • OfferKpi
        • OfferPriceSegment
        • OfferDeviceGroup
        • Offer
        • OfferProductGroup
        • OfferAttributionModel
      • Voucher
      • TextLink
      • Banner
      • Link
      • Connection
      • PriceCombination
      • Image
      • Currency
      • Advertiser
      • Provider
      • Money
      • Error
      • KPI
  • Advertiser API
    • Using the API
      • Authorization
    • Login
      • Get token
      • Login
    • Performance
    • Transactions
      • Set transaction status to "pending"
      • Set transaction status to "declined"
      • Set transaction status to "approved"
    • Touchpoints
    • Offers
    • Ads
      • Bulk update text links
      • Bulk update banners
    • Trades
      • Bulk update trades
    • Schemas
      • Offer
        • OfferPriceSegment
        • OfferProductGroup
        • OfferStatus
        • OfferTracking
        • OfferTargetedCountry
        • OfferOverview
        • OfferCategory
        • OfferVertical
        • AttributionModel Filter
        • OfferStatus Filter
        • Offer
        • OfferAttributionModel
        • OfferFrequentlyAskedQuestion
        • OfferReview
      • Transaction
        • TransactionType
        • TransactionSourceCurrency
        • TransactionTrackingMethod
        • TransactionType Filter
        • TransactionOrderItem
      • Touchpoint
        • TouchpointStatus
        • TouchpointSummary
        • AttributionStatus Filter
        • TouchpointAttributionStatus
      • Job
      • Currency
      • Provider
      • Advertiser
      • Money
      • TradeType
      • TradeType Filter
      • AdType
      • AdType Filter
      • AdInventoryTrafficType
      • PriceCombination
      • KPI
      • Image
  • Provider API
    • Using the API
      • Naming Conventions
      • Authorization
      • Linking & Embedding
    • Offers
      • List offers
      • Create an offer
    • Trades
      • List trades
    • Schemas
      • Transaction
        • TransactionType
      • Offer
        • OfferVertical
        • OfferTargetedCountry
        • OfferPriceSegment
        • OfferDeviceGroup
        • Offer
        • OfferProgram
        • OfferCategory
        • GatewaySection
        • OfferProductGroup
        • OfferTracking
        • OfferStatus
        • OfferReview
        • OfferFrequentlyAskedQuestion
        • OfferAttributionModel
        • OfferProgramTerms
      • SignUpItem
      • Language
      • Connection
      • PriceCombination
      • SignInItem
      • Image
      • Currency
      • Platform
      • Advertiser
      • Provider
      • Money
      • AdInventoryTrafficType
      • Trade
      • TradeType
      • KPI
  1. Offers

List offers

GET
https://api.targetcircle.com/api/v3/publisher/offers
Returns a list of offers you are connected to.

Request

Authorization
API Key
Add parameter in header
X-Api-Token
Example:
X-Api-Token: ********************
or
Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.targetcircle.com/api/v3/publisher/offers?adInventorySid=undefined&sid=undefined&name=undefined&offset=undefined&limit=undefined&providerSID=undefined&advertiserSID=undefined&offerStatus=1&country=undefined&category=31&vertical=1&salesManager=undefined&attributionModel=undefined' \
--header 'X-Api-Token: <api-key>'
Response Response Example
{
    "data": [
        {
            "sid": "abc123",
            "status": 1,
            "name": "string",
            "logo": {
                "url": "string"
            },
            "url": "string",
            "description": "string",
            "defaultTargetUrl": "string",
            "attributionModel": {
                "code": "lastClick",
                "name": "string"
            },
            "tracking": {
                "deeplinking": {
                    "isEnabled": true
                },
                "customTrackingDomain": {
                    "isEnabled": true
                },
                "productLevelTracking": {
                    "isEnabled": true
                },
                "conversionPathAttribution": {
                    "isEnabled": "string"
                },
                "cookieExpiration": 2592000,
                "fingerprintExpiration": 2592000,
                "impressionExpiration": 86400
            },
            "startDate": "2019-08-24",
            "endDate": "2019-08-24",
            "vertical": {
                "code": "finance",
                "name": "string"
            },
            "category": {
                "code": "string",
                "name": "string"
            },
            "targetedCountries": [
                {
                    "code": "DE",
                    "name": "Germany"
                }
            ],
            "provider": {
                "sid": "ghy789",
                "name": "Global Services"
            },
            "advertiser": {
                "sid": "def456",
                "name": "Cloud Corporation"
            },
            "connectedAdInventories": [
                {
                    "adInventory": {
                        "sid": "string",
                        "name": "string"
                    },
                    "issuedAt": "2019-08-24T14:15:22.123Z",
                    "defaultClickTrackingUrl": "string",
                    "priceCombinations": [
                        {
                            "transactionType": {
                                "code": "sale",
                                "name": "string"
                            },
                            "productGroup": {
                                "sid": "abc123",
                                "name": "Electronics"
                            },
                            "priceSegment": {
                                "sid": "abc123",
                                "name": "Electronics"
                            },
                            "deviceGroup": {
                                "sid": "abc123",
                                "name": "Electronics"
                            },
                            "countries": [
                                "string"
                            ],
                            "pricing": {
                                "type": "fixed",
                                "payout": {
                                    "fixed": {
                                        "amount": 0,
                                        "currencyCode": "string"
                                    },
                                    "percentage": 0
                                }
                            }
                        }
                    ]
                }
            ]
        }
    ],
    "_links": {
        "prev": {
            "href": "string"
        },
        "next": {
            "href": "string"
        }
    }
}
Modified at 2026-07-15 12:20:46
Previous
List vouchers
Next
TransactionType
Built with