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

# Get sending reputation

> Returns the current sending reputation status with bounce and complaint rates.



## OpenAPI

````yaml GET /metrics/reputation
openapi: 3.1.0
info:
  title: SendKit API
  description: The SendKit API allows you to send transactional emails programmatically.
  version: 1.0.0
servers:
  - url: https://api.sendkit.dev
security:
  - bearerAuth: []
paths:
  /metrics/reputation:
    get:
      tags:
        - Metrics
      summary: Get sending reputation
      description: >-
        Returns the current sending reputation status with bounce and complaint
        rates.
      operationId: getReputation
      responses:
        '200':
          description: Reputation retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - healthy
                          - warned
                          - paused
                        example: healthy
                      hard_bounce_rate:
                        type: number
                        example: 1.2
                      total_bounce_rate:
                        type: number
                        example: 2.5
                      complaint_rate:
                        type: number
                        example: 0.05
                      total_sent:
                        type: integer
                        example: 342
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Unauthorized — missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            message: Invalid API key.
  schemas:
    ErrorResponse:
      type: object
      properties:
        name:
          type: string
          description: Error type identifier.
          example: validation_error
        message:
          type: string
          description: Human-readable error message.
          example: The from address domain is not verified.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from your SendKit dashboard. Pass it as a Bearer token in the
        Authorization header.

````