Account
v1
List Accounts
Retrieves a list of Leadfeeder accounts associated with this API key. When listing all accounts, only the account names are returned. Detailed credit information is accessible only when querying a specific account.
:::info Requires the accounts:read OAuth2 scope. :::
get/v1/accounts
Query parameters
account_idstring
The Leadfeeder Account ID. When provided, the response returns a single account including credit details. If omitted, it returns a list of all accessible accounts without credit information. The Account ID can be retrieved using the List Accounts endpoint.
Response
Success
Example response
{
"data": [
{
"type": "account",
"id": "36744212",
"attributes": {
"name": "Dealfront Group GmbH",
"credits": {
"available": 10000,
"used": 520,
"remaining": 9480,
"next_reset_on": "2026-10-01"
}
}
}
],
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}