---
title: "Retrieve account information"
url: "https://earlyaccess.developers.bynder.com/apis/account-api-1/versions/c8396a1a-c88c-416a-940f-8161e23ef316/paths/api-v4-account/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/account-api-1/versions/c8396a1a-c88c-416a-940f-8161e23ef316.md

# Retrieve account information

`GET` `/api/v4/account`

## Responses

- `200` - Account information retrieved successfully

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Account API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/account:
    get:
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  availableLanguages:
                    example:
                      - nl_NL
                      - en_GB
                      - en_US
                      - fr_FR
                      - de_DE
                      - it_IT
                      - es_ES
                      - pl_PL
                    items:
                      type: string
                    type: array
                  defaultLanguage:
                    example: en_US
                    type: string
                  isOpenImageBank:
                    example: false
                    type: boolean
                  name:
                    example: Bynder
                    type: string
                  timeZone:
                    example: Europe/Amsterdam
                    type: string
                type: object
          description: Account information retrieved successfully
      summary: Retrieve account information
      tags:
        - Account
security:
  - OAuth2: []
  - permanentToken: []
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes: {}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes: {}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
