Skip to main content
GET
/
v0
/
external-recipients
List external recipients
curl --request GET \
  --url https://api.getlemma.com/v0/external-recipients \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "external_account_Hd9vWs4mFn7xYk2t",
      "provider_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-20T18:45:00Z",
      "nickname": "Owner's Account"
    },
    {
      "id": "external_account_Bx5nTm8hKw3pVd7c",
      "provider_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-19T18:45:00Z",
      "nickname": "Payroll"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getlemma.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns all saved external recipients for a provider, ordered by most recent first.

Query parameters

provider_id
string
required
The ID of the provider whose recipients to list. You can find provider IDs using the List providers endpoint.

Response

data
object[]
The list of external recipient objects.
{
  "data": [
    {
      "id": "external_account_Hd9vWs4mFn7xYk2t",
      "provider_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-20T18:45:00Z",
      "nickname": "Owner's Account"
    },
    {
      "id": "external_account_Bx5nTm8hKw3pVd7c",
      "provider_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-19T18:45:00Z",
      "nickname": "Payroll"
    }
  ]
}