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

# Me

> Fetches the workspace associated with the passed API key



## OpenAPI

````yaml get /me
openapi: 3.1.0
info:
  title: Management API
  version: '1.0'
servers:
  - url: https://app.activecalculator.com/api/v1
security:
  - sec0: []
paths:
  /me:
    get:
      summary: Me
      description: Fetches the workspace associated with the passed API key
      operationId: me
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: |-
                    {
                      "id": "workspace123",
                      "name": "Example Workspace",
                      "createdAt": "2024-01-15T10:30:00.000Z",
                      "updatedAt": "2024-08-10T14:45:00.000Z"
                    }
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: workspace123
                  name:
                    type: string
                    example: Example Workspace
                  createdAt:
                    type: string
                    example: '2024-01-15T10:30:00.000Z'
                  updatedAt:
                    type: string
                    example: '2024-08-10T14:45:00.000Z'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: x-ac-api-key

````