Skip to main content
GET
/
transactions
cURL
curl --request GET \
  --url https://api.yoshi.ai/v1/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "updated_at": "<string>",
      "account_id": "<string>",
      "account_name": "<string>",
      "amount": 123,
      "amount_absolute": 123,
      "cash_flow_direction": "<string>",
      "is_internal_transfer": true,
      "pending": true,
      "date_posted": "<string>",
      "date_authorized": "<string>",
      "category_label": "<string>",
      "category_tier1": "<string>",
      "category_tier2": "<string>",
      "counterparty_name": "<string>",
      "counterparty_logo_url": "<string>",
      "original_description": "<string>"
    }
  ],
  "pagination": {
    "count": 123,
    "has_more": true,
    "next_cursor": "<string>",
    "total_count": 123,
    "limit": 123
  },
  "meta": {
    "request_id": "req_a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "timestamp": "2026-04-10T12:00:00.000Z"
  }
}

Authorizations

Authorization
string
header
default:yoshi_test_...
required

A Yoshi API key from Settings → API Keys, or a Yoshi OAuth access token issued by Sign in with Yoshi.

Query Parameters

cursor
string

Opaque cursor from a previous response

limit
integer
default:50

Items per page (1-100, default 50)

Required range: 1 <= x <= 100
account_id
string<uuid>

Filter by account ID

start_date
string

Inclusive posted-date lower bound

Pattern: ^\d{4}-\d{2}-\d{2}$
end_date
string

Inclusive posted-date upper bound

Pattern: ^\d{4}-\d{2}-\d{2}$

Response

Transactions retrieved.

data
object[]
required
pagination
object
required
meta
object
required
Last modified on June 18, 2026