Search across transactions, balances, ledgers, and identities with filtering, sorting, and pagination.
X-blnk-key: <api-key>.
Replace <api-key> with your secret API key. Ensure the key is kept secure and not exposed in public repositories or client-side code.
See also: Secure your Blnk server
transactions - Search through all transaction recordsbalances - Find balance records across all ledgersledgers - Locate specific ledgers by name or metadataidentities - Search customer identity records* to return all records. Supports full-text search when combined with query_by. Learn more: Querying"source,destination" - Search in source and destination fields"first_name,last_name,email" - Search in identity name and email fields:=, :>, :<, :>=, :<=, :!=, and ranges. Learn more: FilteringExamples:"status:=APPLIED" - Filter by exact status"amount:>1000" - Filter by amount greater than 1000"status:=APPLIED && currency:=USD" - Multiple conditions"created_at:[1704067200..1706745599]" - Date range filterfield:direction where direction is asc or desc. Multiple fields: field1:desc,field2:asc. Learn more: SortingExamples:"created_at:desc" - Sort by creation date descending"amount:desc,created_at:asc" - Sort by amount then datedocument object with the record data and optional highlights for matched terms.