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

# Get campaign stats

> Returns statistics for a specific campaign



## OpenAPI

````yaml GET /campaigns/{id}/stats
openapi: 3.1.0
info:
  title: Kakiyo API
  description: API for automating LinkedIn outreach campaigns with AI-powered conversations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.kakiyo.com/v1
security:
  - bearerAuth: []
paths:
  /campaigns/{id}/stats:
    get:
      summary: Get Campaign Stats
      description: Returns statistics for a specific campaign
      operationId: getCampaignStats
      parameters:
        - name: id
          in: path
          description: ID of the campaign
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Campaign statistics
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: campaign_12345abcde
                  name:
                    type: string
                    example: Q2 Sales Outreach
                  status:
                    type: string
                    example: active
                  stats:
                    type: object
                    properties:
                      prospects:
                        type: integer
                        example: 150
                      prospectsAnswers:
                        type: integer
                        example: 42
                      messages:
                        type: integer
                        example: 320
                      qualified:
                        type: integer
                        example: 18
                      closed:
                        type: integer
                        example: 5
                      conversionRate:
                        type: string
                        example: 12.00%
                      responseRate:
                        type: string
                        example: 28.00%
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Campaign not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          example: validation_error
        message:
          type: string
          example: The request parameters failed validation
        details:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
                example: name
              message:
                type: string
                example: The name field is required
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````