List transactions reported on a feed line

The feed as Slate sees it, filterable by type, status, externalId, the period draw a transaction was swept into, or date range. Applies to feed credit lines only.

Path Parameters
  • creditLineId
    Type: string Format: uuid
    required

    Credit line UUID

Query Parameters
  • externalId
    Type: string
    min length:  
    1
    max length:  
    255

    Filter by exact partner-side transaction id

  • type
    enum

    Filter by transaction type

    values
    • purchase
    • payment
  • status
    enum

    Filter by transaction status

    values
    • active
    • reversed
  • financingAgreementId
    Type: string Format: uuid

    Filter by the period agreement the transactions were swept into

  • page
    Type: integer
    min:  
    -9007199254740991
    max:  
    9007199254740991

    Page number

  • limit
    Type: integer
    min:  
    -9007199254740991
    max:  
    9007199254740991

    Items per page

  • search
    Type: string

    Free-text search

  • dateFrom
    Type: string

    Filter from date (YYYY-MM-DD; legacy MM-DD-YYYY accepted)

  • dateTo
    Type: string

    Filter to date (YYYY-MM-DD; legacy MM-DD-YYYY accepted)

  • orderBy
    Type: string

    Field used for sorting

  • orderDirection
    enum

    Sort direction

    values
    • asc
    • desc
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/credit-lines/{creditLineId}/transactions
curl https://api-sandbox.tryslatehq.com/credit-lines/123e4567-e89b-12d3-a456-426614174000/transactions \
  --header 'x-api-key: YOUR_SECRET_TOKEN'
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "creditLineId": "123e4567-e89b-12d3-a456-426614174000",
      "externalId": "txn_01J8ZQ",
      "type": "purchase",
      "amount": 12500,
      "transactionDate": "2026-07-30",
      "description": null,
      "financingAgreementId": null,
      "status": "active",
      "reversedAt": null,
      "createdAt": "2026-07-30T00:00:00Z"
    }
  ],
  "total": -9007199254740991,
  "totalPages": -9007199254740991
}