List transactions
curl --request GET \
--url https://app.equated.co/api/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.equated.co/api/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.equated.co/api/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.equated.co/api/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.equated.co/api/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.equated.co/api/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.equated.co/api/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"transactions": [
{
"id": 1,
"providerTransactionId": "<string>",
"accountId": 1,
"name": "<string>",
"amount": "<string>",
"isoCurrencyCode": "<string>",
"date": "<string>",
"status": "<string>",
"postingStatus": "UNSTAGED",
"orgMerchantId": 1,
"merchant": {
"id": 1,
"name": "<string>",
"website": "<string>"
},
"categoryAccountId": 1,
"categoryAccountName": "<string>",
"accountName": "<string>",
"amountBase": "<string>",
"baseCurrency": "<string>",
"linkedDocumentTypes": [
"<string>"
]
}
],
"total": 1,
"counts": {
"inbox": 1,
"posted": 1,
"all": 1
}
}Transactions
List transactions
Returns bank-feed transactions for the organization, newest first. Transactions represent movements in connected bank and credit card accounts; each has a set of postings (ledger lines) that categorize the money.
Key filter parameters:
accountIds— filter by financial account (bank feed source, e.g. checking account), not a ledger/chart-of-accounts entry. Get valid IDs fromGET /api/bank-accounts.categoryAccountIds— filter by the ledger account assigned to the transaction’s postings (e.g. show all transactions categorized to “Software & SaaS”).postingStatuses— comma-separated:UNSTAGED(raw, uncategorized),DRAFT(in inbox, pending review),POSTED(confirmed). Omit to return all statuses.amountDirection—infor money received into the account,outfor money spent.from/to— filter by transaction date (YYYY-MM-DD).orgMerchantIds— filter by assigned vendor/customer merchant.feedScope—bankdrops payment-processor balances (Square, Etsy) from the results;all(the default) keeps them, and an account named inaccountIdsshows under either scope.
GET
/
api
/
transactions
List transactions
curl --request GET \
--url https://app.equated.co/api/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.equated.co/api/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.equated.co/api/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.equated.co/api/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.equated.co/api/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.equated.co/api/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.equated.co/api/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"transactions": [
{
"id": 1,
"providerTransactionId": "<string>",
"accountId": 1,
"name": "<string>",
"amount": "<string>",
"isoCurrencyCode": "<string>",
"date": "<string>",
"status": "<string>",
"postingStatus": "UNSTAGED",
"orgMerchantId": 1,
"merchant": {
"id": 1,
"name": "<string>",
"website": "<string>"
},
"categoryAccountId": 1,
"categoryAccountName": "<string>",
"accountName": "<string>",
"amountBase": "<string>",
"baseCurrency": "<string>",
"linkedDocumentTypes": [
"<string>"
]
}
],
"total": 1,
"counts": {
"inbox": 1,
"posted": 1,
"all": 1
}
}Authorizations
API token issued from the Equated app under Settings → API Tokens.
Query Parameters
Comma-separated financial account ids
Comma-separated register (ledger) account ids
Comma-separated subset of UNSTAGED,DRAFT,POSTED
Required range:
x >= 0Required range:
x >= 0Available options:
in, out Available options:
asc, desc bank hides payment-processor balances; all (the default) includes them
Available options:
bank, all Required range:
0 < x <= 500Required range:
x >= 0