# Get account details

URL: /en/docs/api/v1/accounts/id/get
Last Updated: 2026-07-30T21:15:44.989Z

## Description
No description available.

## Available Actions
- Execute GET request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### GET /api/v1/accounts/{id}

**Get account details**

Retrieve detailed information about a specific account including contacts, documents, and revision history.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Path parameters:**

| Name | Type | Required | Description |
|---|---|---|---|
| `id` | string (uuid) | Yes | Account ID |

**Responses:**

- `200` - Account details retrieved successfully
  - `account` (AccountDetailed (object))
    - `id` (string (uuid)): Unique account identifier
    - `title` (string): Account/company name
    - `description` (string): Account description
    - `review_status` (enum: to_review | in_review | approved | cancelled): Current review status
    - `sfdc_account_id` (string): Salesforce account ID
    - `domain` (string): Primary domain
    - `logo` (string): Logo URL
    - `access_expiry_datetime` (string (date-time)): Access expiry date
    - `nda` (boolean): NDA requirement
    - `type` (enum: standard | enterprise): Account type
    - `internal_notes` (string): Internal notes
    - `date_created` (string (date-time)): Creation timestamp
    - `contacts` (array of Contact (object))
      - `id` (string (uuid))
      - `email` (string (email))
      - `first_name` (string)
      - `last_name` (string)
      - `title` (string)
  - `revisions` (array of AccountRevision (object)): Account revision history
    - `id` (string)
    - `date_created` (string (date-time))
    - `date_updated` (string (date-time))
  - `documents` (array of DocumentWithStatus (object)): Documents associated with this account
    - `id` (string (uuid))
    - `title` (string)
    - `is_shared` (boolean): Whether document is shared with this account
  - `customFields` (array of CustomFieldValue (object)): Custom field values for this account
    - `id` (string (uuid)): Custom field value ID
    - `value` (string): The actual value stored for this field
    - `template` (object): The custom field template definition
      - `id` (string (uuid))
      - `title` (string)
      - `type` (enum: text | number | boolean | date | select | multi_select)
      - `collection` (enum: accounts | contacts)
      - `translations` (array of object)
        - `languages_code` (string)
        - `title` (string)
      - `options` (array of object)
        - `value` (string)
        - `label` (array of object)
          - `languages_code` (string)
          - `translation` (string)

  Example (Successful response):
  
  ```json
  {
  "account": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "Burger King",
    "description": "Fast-food chain EU division",
    "review_status": "completed",
    "type": "enterprise",
    "contacts": [
      {
        "id": "contact-123",
        "email": "compliance@burgerking.com",
        "first_name": "Jane",
        "last_name": "Doe"
      }
    ]
  },
  "revisions": [],
  "documents": [],
  "customFields": [
    {
      "id": "cf-value-123",
      "value": "emea",
      "template": {
        "id": "cft-456",
        "title": "Region",
        "type": "select",
        "collection": "accounts",
        "translations": [
          {
            "languages_code": "en-US",
            "title": "Region"
          }
        ],
        "options": [
          {
            "value": "emea",
            "label": [
              {
                "languages_code": "en-US",
                "translation": "EMEA"
              }
            ]
          }
        ]
      }
    }
  ]
}
  ```
- `401` - Unauthorized
- `403` - Forbidden - account not in your tenant
- `404` - Account not found
- `500` - Internal server error

**Code samples:**

cURL:

```bash
curl -X GET "https://app.orbiqhq.com/api/v1/accounts/{id}" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json"
```

