Get a single transaction
GET /transactions/{id}
GET /transactions/{id}
Operation
GET
/transactions/{id}
Returns a single transaction with advertiser, network, publisher, and campaign summaries.
Operation ID:
getTransaction
·
Tags: Transactions
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
id
|
path | Yes | string | Transaction id |
Request Body
No request body is defined for this operation.
Responses
Content Types
application/json
{
"description": "Transaction",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"$ref": "#/components/schemas/Transaction"
}
},
"required": [
"data"
]
},
"examples": {
"sample_transaction": {
"summary": "Typical transaction response",
"value": {
"data": {
"id": 1234,
"transaction_date": "2026-03-17",
"currency": "USD",
"sale_amount": 150.0,
"commission_amount": 15.0,
"commission_rate": 10.0,
"transaction_id": "CJ-98765",
"order_id": "ORDER-42"
}
}
}
}
}
}
}
{
"$ref": "#/components/responses/Unauthorized"
}
{
"$ref": "#/components/responses/Forbidden"
}
{
"$ref": "#/components/responses/NotFound"
}
API Playground
Run this GET request with your API key, or open it in a new tab. Path uses sample IDs where the OpenAPI path has {parameters}.
Sign in to enable live testing with your API key.
| Action | Method | Endpoint | Description |
|---|---|---|---|
| Get a single transaction | GET |
/api/v1/transactions/1 |
OpenAPI operationId: getTransaction. |
GET /api/v1/transactions/1
OpenAPI
Get a single transaction