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

# Authenticate Me

> Endpoint for checking the validity of your api key.



## OpenAPI

````yaml GET /auth_me
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.public.chatnode.ai/v1
security:
  - bearerAuth: []
paths:
  /auth_me:
    get:
      description: Endpoint for checking the validity of your api key.
      responses:
        '200':
          description: Authenticate Me response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Me'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Unauthorized'
components:
  schemas:
    Me:
      required:
        - id
        - email
      type: object
      properties:
        id:
          type: integer
          description: The unique identifier for the team associated with the api key.
          example: '90'
        name:
          type: string
          description: The name of the team associated with the api key.
          example: Default Team
        slug:
          type: string
          description: The slug of the team associated with the api key.
          example: default-team
    Unauthorized:
      required:
        - message
      type: object
      properties:
        message:
          type: string
          example: Bearer token missing or unknown
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````