curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/accounts \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/accounts"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.tryfuse.ai/api/v1/business/accounts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"channel": "email",
"accounts": [
{
"id": "sam@brightpay.com",
"emailAddress": "sam@brightpay.com",
"name": "Sam Rivera",
"provider": "gmail",
"isActive": true,
"isConnected": true,
"dailyCapacity": 30,
"availableCapacity": 29,
"needsReauthAt": null,
"needsReauthReason": null
},
{
"id": "outreach@brightpay.com",
"emailAddress": "outreach@brightpay.com",
"name": null,
"provider": "smtp",
"isActive": true,
"isConnected": false,
"dailyCapacity": 15,
"availableCapacity": 15,
"needsReauthAt": "2026-08-17T16:22:52.131Z",
"needsReauthReason": "smtp_auth_rejected"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Connected sending accounts by channel
The connected sending accounts for one channel. channel=email lists the mailboxes the token owner owns or has shared with them: id is the email address (use it as a campaign sender), provider is gmail, outlook or smtp, and needsReauthAt/needsReauthReason are set when the provider invalidated the connection. channel=linkedin lists the owner’s LinkedIn seats: id is the LinkedIn account id accepted by linkedin_sender_account_ids, type is the LinkedIn plan (classic or a premium variant). Available to any valid key (no scope needed). Rate limit: 120 requests per minute, 10000 per day.
Errors:
422VALIDATION_FAILED—channelis missing (it is required) or is not email or linkedin.429RATE_LIMITED— Per-user quota for this endpoint family exceeded (120 per minute, 10000 per day); retry after the Retry-After / RateLimit-Reset seconds.
curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/accounts \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/accounts"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.tryfuse.ai/api/v1/business/accounts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"channel": "email",
"accounts": [
{
"id": "sam@brightpay.com",
"emailAddress": "sam@brightpay.com",
"name": "Sam Rivera",
"provider": "gmail",
"isActive": true,
"isConnected": true,
"dailyCapacity": 30,
"availableCapacity": 29,
"needsReauthAt": null,
"needsReauthReason": null
},
{
"id": "outreach@brightpay.com",
"emailAddress": "outreach@brightpay.com",
"name": null,
"provider": "smtp",
"isActive": true,
"isConnected": false,
"dailyCapacity": 15,
"availableCapacity": 15,
"needsReauthAt": "2026-08-17T16:22:52.131Z",
"needsReauthReason": "smtp_auth_rejected"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Authorizations
Your API token (af_…) as the Basic-auth username, with an empty password.
Query Parameters
Sending channel to list: email (connected mailboxes: gmail, outlook or smtp) or linkedin (connected LinkedIn seats); the row shape differs per channel.
email, linkedin