Skip to main content
GET
/
v1
/
transactions
cURL
curl --request GET \
  --url https://external.vin.gs/api/v1/transactions \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "amount_cents": 123,
      "date": "<string>",
      "title": "<string>",
      "id": "<string>",
      "pending": true,
      "currency": "<string>",
      "plaid_category": "<string>",
      "merchant_name": "<string>",
      "account_name": "<string>",
      "bank_name": "<string>",
      "linked_transaction_id": "<string>"
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": {
      "date": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vin.gs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Vings OAuth access token or personal access token (vng_pat_…). Use Authorization: Bearer ….

Query Parameters

dateFrom
string
dateTo
string
minAmountCents
string
maxAmountCents
string
merchantQuery
string
category
string
categories
string

Comma-separated categories

type
enum<string>
Available options:
INCOME,
EXPENSE
accountIds
string

Comma-separated account IDs

pending
string
hidden
string
cursor
string

URL-encoded JSON cursor with date and id

pageSize
string
showInternalTransfers
string

Response

Cursor-paginated transaction search results

transactions
object[]
required
pagination
object
required