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

# Get transactional API keys

> Retrieves a list of transactional API keys



## OpenAPI

````yaml /openapi.json get /outbound/transactional-keys
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /outbound/transactional-keys:
    get:
      tags:
        - Outbound
      summary: Get transactional API keys
      description: Retrieves a list of transactional API keys
      responses:
        '200':
          description: Successfully retrieved transactional keys
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  transactionalKeys:
                    type: array
                    items:
                      type: object
                      properties:
                        api_token:
                          type: string
                          description: API key
                          example: transactional_1111111
                        uuid:
                          type: string
                          description: Unique identifier for the transactional key
                          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        name:
                          type: string
                          description: Name for the transactional key
                          example: Production API Key
                        status:
                          type: string
                          enum:
                            - disabled
                            - active
                            - suspended
                            - quota-locked
                            - quota-unlocked
                          description: Current status of the API key
                          example: active
                        allowAllDomains:
                          type: integer
                          enum:
                            - 0
                            - 1
                          description: >-
                            Whether the key can send from all verified domains
                            (0=false, 1=true)
                          example: 0
                        approvedDomains:
                          type: string
                          description: JSON string containing array of approved domains
                          example: '["alloweddomain.com"]'
                        usage:
                          type: integer
                          description: Current usage count
                          example: 77
                        quota:
                          type: integer
                          description: Maximum allowed usage
                          example: 1001
                        ipRestrictions:
                          type: string
                          description: JSON string containing array of allowed IP addresses
                          example: '["1.1.1.1"]'
                        created_date:
                          type: string
                          description: Creation timestamp
                          example: '1724113774000'
                        last_modified:
                          type: integer
                          description: Last modification timestamp
                          example: 1735937552
        '401':
          description: Unauthorized - User not authenticated
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: User information not found
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Failed to fetch SMTP users
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````