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

# Get v1analytics

> Get comprehensive email analytics and performance metrics for your organization



## OpenAPI

````yaml https://api.transmit.dev/openapi.json get /v1/analytics
openapi: 3.1.0
info:
  title: Transmit.dev API
  description: >-
    A powerful email API for transactional and marketing emails. Send emails
    with tracking, analytics, and webhook support.
  version: 1.0.3
servers:
  - url: https://api.transmit.dev
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Emails
    description: Email sending and management operations
  - name: SMS
    description: SMS sending and management operations with toll-free numbers
  - name: Analytics
    description: Performance analytics and metrics
  - name: Billing
    description: Credit balance and usage information
  - name: Contacts
    description: Contact management operations
  - name: Webhooks
    description: Webhook configuration and testing
paths:
  /v1/analytics:
    get:
      tags:
        - Analytics
      description: >-
        Get comprehensive email analytics and performance metrics for your
        organization
      operationId: getAnalytics
      responses:
        '200':
          description: Analytics retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  stats:
                    type: object
                    properties:
                      emails_sent:
                        type: number
                      recipients_reached:
                        type: number
                      emails_delivered:
                        type: number
                      recipients_delivered:
                        type: number
                      emails_opened:
                        type: number
                      emails_clicked:
                        type: number
                      emails_bounced:
                        type: number
                      emails_complained:
                        type: number
                      delivery_rate:
                        type: number
                      open_rate:
                        type: number
                      click_rate:
                        type: number
                      bounce_rate:
                        type: number
                      complaint_rate:
                        type: number
                    required:
                      - emails_sent
                      - recipients_reached
                      - emails_delivered
                      - recipients_delivered
                      - emails_opened
                      - emails_clicked
                      - emails_bounced
                      - emails_complained
                      - delivery_rate
                      - open_rate
                      - click_rate
                      - bounce_rate
                      - complaint_rate
                    description: Email analytics statistics
                required:
                  - stats
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Error code
                  message:
                    type: string
                    description: Error message
                  statusCode:
                    type: number
                    description: HTTP status code
                  details:
                    description: Additional error details
                required:
                  - code
                  - message
                  - statusCode
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Enter your API key with 'tx_' prefix. Get your API key from the
        dashboard.

````