Skip to main content
GET
/
api
/
v2
/
dfy-email-account-orders
/
accounts
List DFY ordered email accounts
curl --request GET \
  --url https://api.instantly.ai/api/v2/dfy-email-account-orders/accounts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "domain": "example.com",
      "email": "user@example.com",
      "email_provider": 1,
      "first_name": "John",
      "last_name": "Doe",
      "is_pre_warmed_up": true,
      "timestamp_cancelled": "2025-01-01T00:00:00.000Z",
      "timestamp_created": "2025-01-01T00:00:00.000Z",
      "password": "password"
    }
  ],
  "next_starting_after": "123e4567-e89b-12d3-a456-426614174000:2025-01-01T00:00:00.000Z"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

The number of items to return

Required range: 1 <= x <= 100
Example:

10

starting_after
string

The ID of the last item in the previous page - used for pagination. You can use the value of the next_starting_after field from the previous response.

Example:

"01956fbd-0eb1-72db-a565-82977a586084"

with_passwords
boolean

Whether to include passwords in the response

Example:

true

Response

The list of accounts

items
object[]
required

The list of accounts

next_starting_after
string

The filter for getting the next items after this one, this could either be a UUID, a timestamp, on an email depending on the specific API

Example:

"123e4567-e89b-12d3-a456-426614174000:2025-01-01T00:00:00.000Z"