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

# Current Account

> Get account information



## OpenAPI

````yaml get /account
openapi: 3.0.2
info:
  title: DeliveryKey API Specification
  description: API documentation for DeliveryKey endpoints
  version: v1
  x-logo:
    url: http://app.deliverykey.local/images/deliveryRoundDocs.png
    backgroundColor: '#F4F4F6'
    padding: 5px
    altText: DeliveryKey Logo
servers:
  - url: https://api.deliverykey.com/v1
security: []
tags:
  - name: Account
    description: Current Account
  - name: Domain
    description: Domains
    x-displayName: Domain
  - name: Template
    description: Templates
    x-displayName: Template
  - name: Webhook
    description: Webhooks
    x-displayName: Webhook
  - name: Email
    description: Emails
    x-displayName: Email
paths:
  /account:
    get:
      tags:
        - Account
      summary: Current Account
      description: Get account information
      operationId: account.show
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  Account:
                    properties:
                      id:
                        description: Unique ID of the Account
                        format: number
                        type: string
                        readOnly: true
                        example: 1
                      name:
                        description: The name of the account
                        format: string
                        type: string
                        example: Acment
        default:
          $ref: '#/components/responses/errors.404'
components:
  responses:
    errors.404:
      description: Not Found

````