Skip to main content
GET
/
v1
/
transactions
List transactions
curl --request GET \
  --url https://api.example.com/v1/transactions
{
  "data": [
    {
      "key": "transaction_123",
      "action": "sale",
      "amount": 99.99,
      "partner": "partner_123",
      "customer": "customer_123",
      "credit": false,
      "is_currency": true,
      "amount_units": "USD",
      "created_at": "2025-05-07T05:32:48.000000Z",
      "deleted_at": null,
      "rewards": [
        {
          "key": "transaction_123",
          "action": "sale",
          "status": "ok",
          "customer": "customer_123",
          "partner": "partner_123",
          "amount": 29.997,
          "amount_units": "USD",
          "is_currency": true,
          "credit": false,
          "created_at": "2025-05-07T05:32:48.000000Z",
          "deleted_at": null,
          "product_type_data": {}
        }
      ]
    },
    {
      "key": "transaction_456",
      "action": "sale",
      "amount": 50.99,
      "partner": "partner_456",
      "customer": "customer_456",
      "credit": false,
      "is_currency": true,
      "amount_units": "USD",
      "created_at": "2025-05-07T06:15:22.000000Z",
      "deleted_at": null,
      "rewards": []
    }
  ],
  "links": {
    "first": "https://api.partnero.com/v1/transactions?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "https://api.partnero.com/v1/transactions",
    "per_page": 15,
    "to": 2
  },
  "status": 1
}

Endpoint

GET https://api.partnero.com/v1/transactions

Query parameters

ParameterTypeDefaultDescription
limitinteger15Number of results per page (1–250)
pageinteger1Page number for pagination
keystringFilter by transaction key

Request

cURL
curl --location 'https://api.partnero.com/v1/transactions?limit=50' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Response

{
  "data": [
    {
      "key": "transaction_123",
      "action": "sale",
      "amount": 99.99,
      "partner": "partner_123",
      "customer": "customer_123",
      "credit": false,
      "is_currency": true,
      "amount_units": "USD",
      "created_at": "2025-05-07T05:32:48.000000Z",
      "deleted_at": null,
      "rewards": [
        {
          "key": "transaction_123",
          "action": "sale",
          "status": "ok",
          "customer": "customer_123",
          "partner": "partner_123",
          "amount": 29.997,
          "amount_units": "USD",
          "is_currency": true,
          "credit": false,
          "created_at": "2025-05-07T05:32:48.000000Z",
          "deleted_at": null,
          "product_type_data": {}
        }
      ]
    },
    {
      "key": "transaction_456",
      "action": "sale",
      "amount": 50.99,
      "partner": "partner_456",
      "customer": "customer_456",
      "credit": false,
      "is_currency": true,
      "amount_units": "USD",
      "created_at": "2025-05-07T06:15:22.000000Z",
      "deleted_at": null,
      "rewards": []
    }
  ],
  "links": {
    "first": "https://api.partnero.com/v1/transactions?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "https://api.partnero.com/v1/transactions",
    "per_page": 15,
    "to": 2
  },
  "status": 1
}

Response fields

FieldTypeDescription
keystringUnique transaction identifier
actionstringTransaction type (e.g., sale)
amountnumberTransaction amount
amount_unitsstringCurrency code
partnerstringPartner key
customerstringCustomer key
creditbooleanWhether this is a credit transaction
is_currencybooleanWhether the amount is monetary
rewardsarrayAssociated rewards/commissions
created_atstringISO 8601 timestamp
deleted_atstring|nullDeletion timestamp if archived/refunded