> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://docs.agentmail.to/llms.txt. For full content including API reference and SDK examples, see https://docs.agentmail.to/llms-full.txt.

# List Accounts

GET https://api.agentmail.to/v0/inboxes/{inbox_id}/accounts

Lists accounts held by the inbox, across all providers. Requires `inbox_read`.

Reference: https://docs.agentmail.to/api-reference/inboxes/accounts/list

## Authentication

- `Authorization` header (bearer token, required) — Bearer authentication of the form `Bearer <token>`, where token is your auth token.

## Servers

- `https://api.agentmail.to` (prod, default)
- `https://x402.api.agentmail.to` (prod-x402)
- `https://mpp.api.agentmail.to` (prod-mpp)
- `https://api.agentmail.eu` (eu-prod)

## Request

### Path parameters

- `inbox_id` (string, required) — The ID of the inbox.

### Query parameters

- `limit` (integer, optional) — Limit of number of items returned.
- `page_token` (string, optional) — Page token for pagination.
- `ascending` (boolean, optional) — Sort in ascending temporal order.

## Response

### 200

- `count` (integer, required) — Number of items returned.
- `limit` (integer, required) — Limit of number of items returned.
- `accounts` (list of object, required)
  - `account_id` (UUID, required) — ID of account.
  - `provider_id` (UUID, required) — ID of provider.
  - `inbox_id` (string, required) — The ID of the inbox.
  - `pod_id` (string, required) — ID of pod.
  - `organization_id` (string, required) — ID of organization.
  - `first_signed_in_at` (datetime, required) — Time of first sign-in at provider.
  - `last_signed_in_at` (datetime, required) — Time of most recent sign-in at provider.
  - `sign_in_count` (integer, required) — Number of sign-ins at provider.
  - `provider_name` (string, optional) — Display name of provider.
  - `status` (enum, optional) — Present only while the account is disabled. Absent means the inbox may sign in.
    - Allowed values: `disabled`
  - `disabled_at` (datetime, optional) — Time at which the account was disabled. Present only while `status` is `disabled`.
- `next_page_token` (string, optional) — Page token for pagination.

## Errors

### 400 Validation Error

- `name` (string, required) — Name of error.
- `errors` (any, required) — Validation errors. Each entry has a path and a message identifying the invalid field.
- `code` (string, optional) — Stable, machine-readable error code in snake_case (for example, not_found or missing_permission). Branch on this rather than the message text.
- `message` (string, optional) — Error message.
- `fix` (string, optional) — The concrete next action that resolves the error.
- `docs` (string, optional) — Link to the error reference entry for this code.

## Examples

**Response**

```json
{
  "count": 1,
  "limit": 1,
  "accounts": [
    {
      "account_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
      "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
      "inbox_id": "inbox_id",
      "pod_id": "pod_id",
      "organization_id": "organization_id",
      "first_signed_in_at": "2024-01-15T09:30:00Z",
      "last_signed_in_at": "2024-01-15T09:30:00Z",
      "sign_in_count": 1,
      "provider_name": "provider_name",
      "status": "disabled",
      "disabled_at": "2024-01-15T09:30:00Z"
    },
    {
      "account_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
      "provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
      "inbox_id": "inbox_id",
      "pod_id": "pod_id",
      "organization_id": "organization_id",
      "first_signed_in_at": "2024-01-15T09:30:00Z",
      "last_signed_in_at": "2024-01-15T09:30:00Z",
      "sign_in_count": 1,
      "provider_name": "provider_name",
      "status": "disabled",
      "disabled_at": "2024-01-15T09:30:00Z"
    }
  ],
  "next_page_token": "next_page_token"
}
```

**SDK Code**

```python
import requests

url = "https://api.agentmail.to/v0/inboxes/inbox_id/accounts"

headers = {"Authorization": "Bearer <api_key>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.agentmail.to/v0/inboxes/inbox_id/accounts';
const options = {method: 'GET', headers: {Authorization: 'Bearer <api_key>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.agentmail.to/v0/inboxes/inbox_id/accounts"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <api_key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.agentmail.to/v0/inboxes/inbox_id/accounts")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <api_key>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.agentmail.to/v0/inboxes/inbox_id/accounts")
  .header("Authorization", "Bearer <api_key>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.agentmail.to/v0/inboxes/inbox_id/accounts', [
  'headers' => [
    'Authorization' => 'Bearer <api_key>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.agentmail.to/v0/inboxes/inbox_id/accounts");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <api_key>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <api_key>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.agentmail.to/v0/inboxes/inbox_id/accounts")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```