GET
/
transactions
/
{id}
curl --request GET \
  --url https://api.antei.com/transactions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "transaction_type": "inflow",
  "amount": 123,
  "currency": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "description": "<string>"
}

Use this endpoint to fetch the full details of a transaction, such as for auditing, reconciliation, or export.

Path Parameter:

  • id – Unique ID of the transaction

Response:

Returns a single Transaction object. This includes:

  • Transaction type: inflow or outflow
  • Associated contact and product information
  • Tax calculation metadata
  • Currency and exchange rate (if applicable)

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the transaction

Response

200
application/json

Transaction details

id
string
required

Unique identifier for the transaction

transaction_type
enum<string>
required

Direction of the transaction

Available options:
inflow,
outflow
amount
number
required

Transaction amount

currency
string
required

Currency code (e.g., USD, EUR)

timestamp
string
required

Time of transaction

description
string

Optional description of the transaction