# Generate API key

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /auth_generate_key:
    post:
      summary: Generate API key
      deprecated: false
      description: ''
      tags:
        - Authentication
        - Authentication
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateKeyRequest'
      responses:
        '201':
          description: API key created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKeyResponse'
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: Authentication
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1150986/apis/api-25474690-run
components:
  schemas:
    GenerateKeyRequest:
      type: object
      required:
        - name
      properties:
        name:
          type: string
        rate_limit:
          type: integer
          default: 100
        developer_id:
          type: string
          format: uuid
      x-apidog-orders:
        - name
        - rate_limit
        - developer_id
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    ApiKeyResponse:
      type: object
      properties:
        success:
          type: boolean
        api_key:
          type: string
        id:
          type: string
        name:
          type: string
        rate_limit:
          type: integer
        message:
          type: string
      x-apidog-orders:
        - success
        - api_key
        - id
        - name
        - rate_limit
        - message
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
