Skip to main content
GET
/
api
/
email
/
accounts
List Inboxes
curl --request GET \
  --url https://app.puffle.ai/api/email/accounts \
  --header 'Authorization: Bearer <token>'
{
  "accounts": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "email",
      "domain_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "email_address": "jsmith@example.com",
      "agentmail_inbox_id": "<string>",
      "instantly_account_id": "<string>",
      "display_name": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "signature": "<string>",
      "instantly_tag_id": "<string>",
      "instantly_warmup_tag_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "email_domains": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "domain": "<string>"
      }
    }
  ]
}
CLI:
puffle email account

Overview

Return every inbox owned by the caller, newest first. Each row is joined with its backing email_domains entry so clients can render domain status (verified, pending, …) without a second round-trip. Warmup analytics (stat_warmup_score, health_score, daily sends) are NOT included here — fetch them separately via GET /api/email/accounts/warmup-analytics.
This operation shares the URL path /api/email/accounts with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Array of email accounts. Empty array is a valid response for users who have not created any inboxes.

accounts
object[]
required