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
- Type: string Format: uuidcredit
Line Id requiredCredit line UUID
Query Parameters
- Type: stringexternal
Id min length:1max length:255Filter by exact partner-side transaction id
- enumtype
Filter by transaction type
values- purchase
- payment
- enumstatus
Filter by transaction status
values- active
- reversed
- Type: string Format: uuidfinancing
Agreement Id Filter by the period agreement the transactions were swept into
- Type: integerpagemin:-9007199254740991max:9007199254740991
Page number
- Type: integerlimitmin:-9007199254740991max:9007199254740991
Items per page
- Type: stringsearch
Free-text search
- Type: stringdate
From Filter from date (YYYY-MM-DD; legacy MM-DD-YYYY accepted)
- Type: stringdate
To Filter to date (YYYY-MM-DD; legacy MM-DD-YYYY accepted)
- Type: stringorder
By Field used for sorting
- enumorder
Direction 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
}