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

# Health check

> Returns API health status. No authentication required.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/health
openapi: 3.1.0
info:
  title: Carbon Copy API
  version: 2.0.0
  description: >-
    Programmatic access to Carbon Copy's Polymarket copy-trading platform.
    Follow traders, manage your portfolio, and automate your prediction market
    strategy.
  contact:
    name: Carbon Copy Support
    email: support@carboncopy.inc
    url: https://carboncopy.inc
servers:
  - url: https://carboncopy.inc
    description: Production
security: []
tags:
  - name: Health
    description: Service health and status.
  - name: Portfolio
    description: Portfolio summary, positions, trade history, and P&L.
  - name: Follow Management
    description: >-
      Follow, configure, and manage the traders you copy. All routes live under
      `/portfolio/traders`.
  - name: Trader Discovery
    description: Search and filter traders on the platform. Routes under `/traders`.
  - name: Orders
    description: Inspect orders placed by your copy-trading bot.
  - name: Markets
    description: Market data — prices and token info.
  - name: Account
    description: Your Carbon Copy account information.
paths:
  /api/v1/health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns API health status. No authentication required.
      operationId: getHealth
      responses:
        '200':
          description: API is healthy.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
              example:
                status: ok
                version: 2.0.0
                timestamp: 1741600000000
components:
  schemas:
    HealthResponse:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - ok
          example: ok
        version:
          type: string
          example: 2.0.0
        timestamp:
          type: integer
          description: Current server time as Unix timestamp (milliseconds).
          example: 1741600000000

````