1. Trades
Target Circle API
  • Publisher API
    • Ads
      • List vouchers
    • Offers
      • List offers
    • 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
        GET
    • 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. Trades

List trades

GET
/api/v3/provider/trades
Returns a list of trades.

Request

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v3/provider/trades?offerSid=undefined&type=undefined&offset=undefined&limit=undefined'
Response Response Example
{
    "data": [
        {
            "sid": "abc123",
            "name": "string",
            "type": {
                "code": "manual",
                "name": "string"
            },
            "startDate": "2019-08-24",
            "endDate": "2019-08-24",
            "_links": {},
            "_embedded": {
                "x:priceCombinations": [
                    {
                        "transactionType": {
                            "code": "sale",
                            "name": "string"
                        },
                        "productGroup": {
                            "sid": "abc123",
                            "name": "Electronics"
                        },
                        "priceSegment": {
                            "id": "string",
                            "name": "Silver"
                        },
                        "deviceGroup": {
                            "id": "string",
                            "name": "Silver"
                        },
                        "trafficTypes": [
                            {
                                "code": "incentivizedAndCashback",
                                "name": "string"
                            }
                        ],
                        "countries": [
                            "string"
                        ],
                        "pricing": {
                            "type": "fixed",
                            "payout": {
                                "fixed": {
                                    "amount": 0,
                                    "currencyCode": "string"
                                },
                                "percentage": 0
                            }
                        }
                    }
                ]
            }
        }
    ],
    "_links": {
        "prev": {
            "href": "string"
        },
        "next": {
            "href": "string"
        }
    }
}
Modified at 2026-07-14 11:54:49
Previous
Create an offer
Next
TransactionType
Built with