List assets/tokens
curl --request GET \
--url https://api.breezing.io/v1/assetsimport requests
url = "https://api.breezing.io/v1/assets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.breezing.io/v1/assets', 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/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.breezing.io/v1/assets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.breezing.io/v1/assets")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breezing.io/v1/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": 123,
"symbol": "ETH",
"address": "<string>",
"orgId": 123,
"companyId": 123,
"accountCode": "1200",
"accountName": "Crypto Assets",
"isSpam": true,
"createdAt": 123,
"updatedAt": 123
}
],
"pagination": {
"limit": 123,
"cursor": 123,
"hasMore": true
}
}{
"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>"
}
}Assets
List Assets API
Retrieve Breezing token assets with cursor pagination, spam filtering, and GL account mappings for crypto accounting workflows.
GET
/
assets
List assets/tokens
curl --request GET \
--url https://api.breezing.io/v1/assetsimport requests
url = "https://api.breezing.io/v1/assets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.breezing.io/v1/assets', 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/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.breezing.io/v1/assets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.breezing.io/v1/assets")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breezing.io/v1/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": 123,
"symbol": "ETH",
"address": "<string>",
"orgId": 123,
"companyId": 123,
"accountCode": "1200",
"accountName": "Crypto Assets",
"isSpam": true,
"createdAt": 123,
"updatedAt": 123
}
],
"pagination": {
"limit": 123,
"cursor": 123,
"hasMore": true
}
}{
"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.
Example:
"1"
Company ID. Use GET /v1/companies to discover available companies and their access levels.
Example:
"1"
Asset ID to start after (cursor-based pagination)
Example:
"100"
Number of assets to return (1-100)
Example:
"50"
Search by token symbol (prefix match, e.g. "ETH", "USDC")
Example:
"ETH"
Spam filter (default: "notSpam"). Breezing auto-detects spam/airdrop tokens. Use "all" to include them in results.
Available options:
all, spamOnly, notSpam Last modified on April 11, 2026