curl --request POST \
--url https://api.breezing.io/v1/transactions \
--header 'Content-Type: application/json' \
--data '
{
"walletId": 1,
"transactions": [
{
"direction": "in",
"date": 1700000000,
"transactionId": "0xabc123…",
"token": "ETH",
"amount": "1.5",
"fee": "0.001",
"feeToken": "<string>",
"amountFiat": "3000.00",
"feeFiat": "2.00",
"type": "<string>",
"chain": "<string>",
"tokenAddress": "<string>",
"feeTokenAddress": "<string>",
"walletFrom": "<string>",
"walletTo": "<string>",
"account": "<string>",
"assetAccount": "<string>",
"feeAssetAccount": "<string>",
"accountingDescription": "<string>",
"note": "<string>",
"extraLabel": "<string>",
"vat": "<string>",
"isSpam": true,
"isNFT": true,
"skipNgl": true,
"skipNglReason": "<string>",
"currency": "<string>",
"functionName": "<string>",
"tokenId": "<string>"
}
],
"doFiat": true
}
'import requests
url = "https://api.breezing.io/v1/transactions"
payload = {
"walletId": 1,
"transactions": [
{
"direction": "in",
"date": 1700000000,
"transactionId": "0xabc123…",
"token": "ETH",
"amount": "1.5",
"fee": "0.001",
"feeToken": "<string>",
"amountFiat": "3000.00",
"feeFiat": "2.00",
"type": "<string>",
"chain": "<string>",
"tokenAddress": "<string>",
"feeTokenAddress": "<string>",
"walletFrom": "<string>",
"walletTo": "<string>",
"account": "<string>",
"assetAccount": "<string>",
"feeAssetAccount": "<string>",
"accountingDescription": "<string>",
"note": "<string>",
"extraLabel": "<string>",
"vat": "<string>",
"isSpam": True,
"isNFT": True,
"skipNgl": True,
"skipNglReason": "<string>",
"currency": "<string>",
"functionName": "<string>",
"tokenId": "<string>"
}
],
"doFiat": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
walletId: 1,
transactions: [
{
direction: 'in',
date: 1700000000,
transactionId: '0xabc123…',
token: 'ETH',
amount: '1.5',
fee: '0.001',
feeToken: '<string>',
amountFiat: '3000.00',
feeFiat: '2.00',
type: '<string>',
chain: '<string>',
tokenAddress: '<string>',
feeTokenAddress: '<string>',
walletFrom: '<string>',
walletTo: '<string>',
account: '<string>',
assetAccount: '<string>',
feeAssetAccount: '<string>',
accountingDescription: '<string>',
note: '<string>',
extraLabel: '<string>',
vat: '<string>',
isSpam: true,
isNFT: true,
skipNgl: true,
skipNglReason: '<string>',
currency: '<string>',
functionName: '<string>',
tokenId: '<string>'
}
],
doFiat: true
})
};
fetch('https://api.breezing.io/v1/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://api.breezing.io/v1/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'walletId' => 1,
'transactions' => [
[
'direction' => 'in',
'date' => 1700000000,
'transactionId' => '0xabc123…',
'token' => 'ETH',
'amount' => '1.5',
'fee' => '0.001',
'feeToken' => '<string>',
'amountFiat' => '3000.00',
'feeFiat' => '2.00',
'type' => '<string>',
'chain' => '<string>',
'tokenAddress' => '<string>',
'feeTokenAddress' => '<string>',
'walletFrom' => '<string>',
'walletTo' => '<string>',
'account' => '<string>',
'assetAccount' => '<string>',
'feeAssetAccount' => '<string>',
'accountingDescription' => '<string>',
'note' => '<string>',
'extraLabel' => '<string>',
'vat' => '<string>',
'isSpam' => true,
'isNFT' => true,
'skipNgl' => true,
'skipNglReason' => '<string>',
'currency' => '<string>',
'functionName' => '<string>',
'tokenId' => '<string>'
]
],
'doFiat' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.breezing.io/v1/transactions"
payload := strings.NewReader("{\n \"walletId\": 1,\n \"transactions\": [\n {\n \"direction\": \"in\",\n \"date\": 1700000000,\n \"transactionId\": \"0xabc123…\",\n \"token\": \"ETH\",\n \"amount\": \"1.5\",\n \"fee\": \"0.001\",\n \"feeToken\": \"<string>\",\n \"amountFiat\": \"3000.00\",\n \"feeFiat\": \"2.00\",\n \"type\": \"<string>\",\n \"chain\": \"<string>\",\n \"tokenAddress\": \"<string>\",\n \"feeTokenAddress\": \"<string>\",\n \"walletFrom\": \"<string>\",\n \"walletTo\": \"<string>\",\n \"account\": \"<string>\",\n \"assetAccount\": \"<string>\",\n \"feeAssetAccount\": \"<string>\",\n \"accountingDescription\": \"<string>\",\n \"note\": \"<string>\",\n \"extraLabel\": \"<string>\",\n \"vat\": \"<string>\",\n \"isSpam\": true,\n \"isNFT\": true,\n \"skipNgl\": true,\n \"skipNglReason\": \"<string>\",\n \"currency\": \"<string>\",\n \"functionName\": \"<string>\",\n \"tokenId\": \"<string>\"\n }\n ],\n \"doFiat\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.breezing.io/v1/transactions")
.header("Content-Type", "application/json")
.body("{\n \"walletId\": 1,\n \"transactions\": [\n {\n \"direction\": \"in\",\n \"date\": 1700000000,\n \"transactionId\": \"0xabc123…\",\n \"token\": \"ETH\",\n \"amount\": \"1.5\",\n \"fee\": \"0.001\",\n \"feeToken\": \"<string>\",\n \"amountFiat\": \"3000.00\",\n \"feeFiat\": \"2.00\",\n \"type\": \"<string>\",\n \"chain\": \"<string>\",\n \"tokenAddress\": \"<string>\",\n \"feeTokenAddress\": \"<string>\",\n \"walletFrom\": \"<string>\",\n \"walletTo\": \"<string>\",\n \"account\": \"<string>\",\n \"assetAccount\": \"<string>\",\n \"feeAssetAccount\": \"<string>\",\n \"accountingDescription\": \"<string>\",\n \"note\": \"<string>\",\n \"extraLabel\": \"<string>\",\n \"vat\": \"<string>\",\n \"isSpam\": true,\n \"isNFT\": true,\n \"skipNgl\": true,\n \"skipNglReason\": \"<string>\",\n \"currency\": \"<string>\",\n \"functionName\": \"<string>\",\n \"tokenId\": \"<string>\"\n }\n ],\n \"doFiat\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breezing.io/v1/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"walletId\": 1,\n \"transactions\": [\n {\n \"direction\": \"in\",\n \"date\": 1700000000,\n \"transactionId\": \"0xabc123…\",\n \"token\": \"ETH\",\n \"amount\": \"1.5\",\n \"fee\": \"0.001\",\n \"feeToken\": \"<string>\",\n \"amountFiat\": \"3000.00\",\n \"feeFiat\": \"2.00\",\n \"type\": \"<string>\",\n \"chain\": \"<string>\",\n \"tokenAddress\": \"<string>\",\n \"feeTokenAddress\": \"<string>\",\n \"walletFrom\": \"<string>\",\n \"walletTo\": \"<string>\",\n \"account\": \"<string>\",\n \"assetAccount\": \"<string>\",\n \"feeAssetAccount\": \"<string>\",\n \"accountingDescription\": \"<string>\",\n \"note\": \"<string>\",\n \"extraLabel\": \"<string>\",\n \"vat\": \"<string>\",\n \"isSpam\": true,\n \"isNFT\": true,\n \"skipNgl\": true,\n \"skipNglReason\": \"<string>\",\n \"currency\": \"<string>\",\n \"functionName\": \"<string>\",\n \"tokenId\": \"<string>\"\n }\n ],\n \"doFiat\": true\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"created": 123,
"walletId": 123,
"taskId": 123,
"transactionIds": [
123
]
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Create Transactions API
Create up to 500 Breezing transactions in a single wallet API request, with automatic contact, asset, and internal-transfer detection.
curl --request POST \
--url https://api.breezing.io/v1/transactions \
--header 'Content-Type: application/json' \
--data '
{
"walletId": 1,
"transactions": [
{
"direction": "in",
"date": 1700000000,
"transactionId": "0xabc123…",
"token": "ETH",
"amount": "1.5",
"fee": "0.001",
"feeToken": "<string>",
"amountFiat": "3000.00",
"feeFiat": "2.00",
"type": "<string>",
"chain": "<string>",
"tokenAddress": "<string>",
"feeTokenAddress": "<string>",
"walletFrom": "<string>",
"walletTo": "<string>",
"account": "<string>",
"assetAccount": "<string>",
"feeAssetAccount": "<string>",
"accountingDescription": "<string>",
"note": "<string>",
"extraLabel": "<string>",
"vat": "<string>",
"isSpam": true,
"isNFT": true,
"skipNgl": true,
"skipNglReason": "<string>",
"currency": "<string>",
"functionName": "<string>",
"tokenId": "<string>"
}
],
"doFiat": true
}
'import requests
url = "https://api.breezing.io/v1/transactions"
payload = {
"walletId": 1,
"transactions": [
{
"direction": "in",
"date": 1700000000,
"transactionId": "0xabc123…",
"token": "ETH",
"amount": "1.5",
"fee": "0.001",
"feeToken": "<string>",
"amountFiat": "3000.00",
"feeFiat": "2.00",
"type": "<string>",
"chain": "<string>",
"tokenAddress": "<string>",
"feeTokenAddress": "<string>",
"walletFrom": "<string>",
"walletTo": "<string>",
"account": "<string>",
"assetAccount": "<string>",
"feeAssetAccount": "<string>",
"accountingDescription": "<string>",
"note": "<string>",
"extraLabel": "<string>",
"vat": "<string>",
"isSpam": True,
"isNFT": True,
"skipNgl": True,
"skipNglReason": "<string>",
"currency": "<string>",
"functionName": "<string>",
"tokenId": "<string>"
}
],
"doFiat": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
walletId: 1,
transactions: [
{
direction: 'in',
date: 1700000000,
transactionId: '0xabc123…',
token: 'ETH',
amount: '1.5',
fee: '0.001',
feeToken: '<string>',
amountFiat: '3000.00',
feeFiat: '2.00',
type: '<string>',
chain: '<string>',
tokenAddress: '<string>',
feeTokenAddress: '<string>',
walletFrom: '<string>',
walletTo: '<string>',
account: '<string>',
assetAccount: '<string>',
feeAssetAccount: '<string>',
accountingDescription: '<string>',
note: '<string>',
extraLabel: '<string>',
vat: '<string>',
isSpam: true,
isNFT: true,
skipNgl: true,
skipNglReason: '<string>',
currency: '<string>',
functionName: '<string>',
tokenId: '<string>'
}
],
doFiat: true
})
};
fetch('https://api.breezing.io/v1/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://api.breezing.io/v1/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'walletId' => 1,
'transactions' => [
[
'direction' => 'in',
'date' => 1700000000,
'transactionId' => '0xabc123…',
'token' => 'ETH',
'amount' => '1.5',
'fee' => '0.001',
'feeToken' => '<string>',
'amountFiat' => '3000.00',
'feeFiat' => '2.00',
'type' => '<string>',
'chain' => '<string>',
'tokenAddress' => '<string>',
'feeTokenAddress' => '<string>',
'walletFrom' => '<string>',
'walletTo' => '<string>',
'account' => '<string>',
'assetAccount' => '<string>',
'feeAssetAccount' => '<string>',
'accountingDescription' => '<string>',
'note' => '<string>',
'extraLabel' => '<string>',
'vat' => '<string>',
'isSpam' => true,
'isNFT' => true,
'skipNgl' => true,
'skipNglReason' => '<string>',
'currency' => '<string>',
'functionName' => '<string>',
'tokenId' => '<string>'
]
],
'doFiat' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.breezing.io/v1/transactions"
payload := strings.NewReader("{\n \"walletId\": 1,\n \"transactions\": [\n {\n \"direction\": \"in\",\n \"date\": 1700000000,\n \"transactionId\": \"0xabc123…\",\n \"token\": \"ETH\",\n \"amount\": \"1.5\",\n \"fee\": \"0.001\",\n \"feeToken\": \"<string>\",\n \"amountFiat\": \"3000.00\",\n \"feeFiat\": \"2.00\",\n \"type\": \"<string>\",\n \"chain\": \"<string>\",\n \"tokenAddress\": \"<string>\",\n \"feeTokenAddress\": \"<string>\",\n \"walletFrom\": \"<string>\",\n \"walletTo\": \"<string>\",\n \"account\": \"<string>\",\n \"assetAccount\": \"<string>\",\n \"feeAssetAccount\": \"<string>\",\n \"accountingDescription\": \"<string>\",\n \"note\": \"<string>\",\n \"extraLabel\": \"<string>\",\n \"vat\": \"<string>\",\n \"isSpam\": true,\n \"isNFT\": true,\n \"skipNgl\": true,\n \"skipNglReason\": \"<string>\",\n \"currency\": \"<string>\",\n \"functionName\": \"<string>\",\n \"tokenId\": \"<string>\"\n }\n ],\n \"doFiat\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.breezing.io/v1/transactions")
.header("Content-Type", "application/json")
.body("{\n \"walletId\": 1,\n \"transactions\": [\n {\n \"direction\": \"in\",\n \"date\": 1700000000,\n \"transactionId\": \"0xabc123…\",\n \"token\": \"ETH\",\n \"amount\": \"1.5\",\n \"fee\": \"0.001\",\n \"feeToken\": \"<string>\",\n \"amountFiat\": \"3000.00\",\n \"feeFiat\": \"2.00\",\n \"type\": \"<string>\",\n \"chain\": \"<string>\",\n \"tokenAddress\": \"<string>\",\n \"feeTokenAddress\": \"<string>\",\n \"walletFrom\": \"<string>\",\n \"walletTo\": \"<string>\",\n \"account\": \"<string>\",\n \"assetAccount\": \"<string>\",\n \"feeAssetAccount\": \"<string>\",\n \"accountingDescription\": \"<string>\",\n \"note\": \"<string>\",\n \"extraLabel\": \"<string>\",\n \"vat\": \"<string>\",\n \"isSpam\": true,\n \"isNFT\": true,\n \"skipNgl\": true,\n \"skipNglReason\": \"<string>\",\n \"currency\": \"<string>\",\n \"functionName\": \"<string>\",\n \"tokenId\": \"<string>\"\n }\n ],\n \"doFiat\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breezing.io/v1/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"walletId\": 1,\n \"transactions\": [\n {\n \"direction\": \"in\",\n \"date\": 1700000000,\n \"transactionId\": \"0xabc123…\",\n \"token\": \"ETH\",\n \"amount\": \"1.5\",\n \"fee\": \"0.001\",\n \"feeToken\": \"<string>\",\n \"amountFiat\": \"3000.00\",\n \"feeFiat\": \"2.00\",\n \"type\": \"<string>\",\n \"chain\": \"<string>\",\n \"tokenAddress\": \"<string>\",\n \"feeTokenAddress\": \"<string>\",\n \"walletFrom\": \"<string>\",\n \"walletTo\": \"<string>\",\n \"account\": \"<string>\",\n \"assetAccount\": \"<string>\",\n \"feeAssetAccount\": \"<string>\",\n \"accountingDescription\": \"<string>\",\n \"note\": \"<string>\",\n \"extraLabel\": \"<string>\",\n \"vat\": \"<string>\",\n \"isSpam\": true,\n \"isNFT\": true,\n \"skipNgl\": true,\n \"skipNglReason\": \"<string>\",\n \"currency\": \"<string>\",\n \"functionName\": \"<string>\",\n \"tokenId\": \"<string>\"\n }\n ],\n \"doFiat\": true\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"created": 123,
"walletId": 123,
"taskId": 123,
"transactionIds": [
123
]
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Query Parameters
Organization ID. Use GET /v1/companies to discover available org/company pairs.
"1"
Company ID. Use GET /v1/companies to discover available companies and their access levels.
"1"
Body
Wallet to add transactions to. Must belong to orgId/companyId. Any wallet type is allowed; transactions are tagged addedVia="publicApi".
x > 01
Transactions to insert (1 to 500). All inserted atomically. If any row fails validation, none are inserted.
1 - 500 elementsShow child attributes
Show child attributes
When true (default), the process worker chain queues the fiat-pricing worker after processing (fills amountFiat/feeFiat). When false, balance calculation is queued directly without fiat backfill.