> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thena.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get account details



## OpenAPI

````yaml get /v1/accounts/{id}
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/accounts/{id}:
    get:
      tags:
        - Accounts
      description: Get account details
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountResponseDto'
        '400':
          description: Account ID is required
          content:
            application/json:
              example:
                statusCode: 400
                message: Account ID is required!
                error: Bad Request
        '403':
          description: Organization tier not supported
          content:
            application/json:
              example:
                statusCode: 403
                message: >-
                  This endpoint is only available for standard and enterprise
                  tier organizations.
                error: Forbidden
        '404':
          description: Account not found
          content:
            application/json:
              example:
                statusCode: 404
                message: Account not found!
                error: Not Found
        '500':
          description: Internal server error
          content:
            application/json:
              example:
                statusCode: 500
                message: Something went wrong!
                error: Internal Server Error
components:
  schemas:
    AccountResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the account
        name:
          type: string
          description: Name of the account
        description:
          type: string
          description: The description of the account
        source:
          type: string
          description: The source of the account
          example: hubspot
        logo:
          type: string
          description: The URL of the account logo
        statusId:
          type: string
          description: The identifier of the status of the account
        status:
          type: string
          description: The status of the account
        statusConfiguration:
          type: object
          description: The configuration of the status
        classificationId:
          type: string
          description: The identifier of the classification of the account
        classification:
          type: string
          description: The classification of the account
        classificationConfiguration:
          type: object
          description: The configuration of the classification
        healthId:
          type: string
          description: The identifier of the health attribute
        health:
          type: string
          description: The health of the account
        healthConfiguration:
          type: object
          description: The configuration of the health
        industryId:
          type: string
          description: The identifier of the industry attribute
        industry:
          type: string
          description: The industry of the account
        industryConfiguration:
          type: object
          description: The configuration of the industry
        primaryDomain:
          type: string
          description: Primary domain of the account
        secondaryDomain:
          description: Secondary domains of the account
          type: array
          items:
            type: string
        accountOwner:
          type: string
          description: Name of the account owner
        accountOwnerId:
          type: string
          description: Unique identifier of the account owner
        accountOwnerEmail:
          type: string
          description: Email of the account owner
        accountOwnerAvatarUrl:
          type: string
          description: The avatar URL of the account owner
        annualRevenue:
          type: number
          description: Annual revenue of the account
        employees:
          type: number
          description: Number of employees of the account
        website:
          type: string
          description: Website of the account
        billingAddress:
          type: string
          description: Billing address of the account
        shippingAddress:
          type: string
          description: Shipping address of the account
        customFieldValues:
          description: The custom field values
          type: array
          items:
            type: string
        metadata:
          type: object
          description: The metadata of the account
        createdAt:
          type: string
          description: Creation date of the account
        updatedAt:
          type: string
          description: Last update date of the account
      required:
        - id
        - name
        - source
        - statusId
        - status
        - statusConfiguration
        - classificationId
        - classification
        - classificationConfiguration
        - healthId
        - health
        - healthConfiguration
        - industryId
        - industry
        - industryConfiguration
        - primaryDomain
        - customFieldValues
        - metadata
        - createdAt
        - updatedAt
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````