---
title: "Get the authenticated account"
method: GET
path: "/account"
---

# Get the authenticated account

`GET /account`

Returns information about the user or organization associated with the provided API token.

Example cURL request:

```console
curl -s \
  -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
  https://api.replicate.com/v1/account
```

The response will be a JSON object describing the account:

```json
{
  "type": "organization",
  "username": "acme",
  "name": "Acme Corp, Inc.",
  "github_url": "https://github.com/acme",
}
```

## Response `200`

Success

- object
  - `avatar_url` string, uri — The avatar URL for the account.
  - `github_url` string, uri — The GitHub URL of the account.
  - `name` string — The name of the account.
  - `type` 'organization' | 'user', required — The account type. Can be a user or an organization.
  - `username` string, required — The username of the account.

---

[API](https://skmtc.net/replicate/apis/replicate-http-api.md) · [All operations](https://skmtc.net/replicate/apis/replicate-http-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/replicate/replicate-http-api/versions/7a537f433b0b/schema)
