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

# Introduction

> Integrating with the Roark API

## Welcome to the Roark API

Our API provides programmatic access to all Roark features — from call monitoring and metrics collection to simulation testing.

<Note>
  Haven't generated an API key yet? [Generate one here](/documentation/getting-started/api-keys)
</Note>

## Core Endpoints

<CardGroup cols={3}>
  <Card title="Call" icon="phone" href="/api-reference/call/create-a-call">
    Upload and analyze call recordings
  </Card>

  <Card title="Metrics" icon="gauge" href="/api-reference/metric/list-metric-definitions">
    Define metrics and collect results on calls
  </Card>

  <Card title="Simulations" icon="activity" href="/api-reference/simulation-run-plan/list-run-plans">
    Test agents with synthetic callers
  </Card>
</CardGroup>

## Getting Started

<Steps>
  <Step title="Generate an API Key">
    Create your API key in the [dashboard](/documentation/getting-started/api-keys) to start making authenticated requests.
  </Step>

  <Step title="Review the Endpoints">
    Explore our available endpoints and their functionalities in the sections above.
  </Step>

  <Step title="Make Your First Request">
    Test the API with a simple health check:

    ```bash theme={null}
    curl -X GET https://api.roark.ai/v1/health \
      -H "Authorization: Bearer YOUR_API_KEY"
    ```
  </Step>
</Steps>

## SDKs and Libraries

<CardGroup cols={2}>
  <Card title="Node.js SDK" icon="square-js" href="/documentation/sdks/node-sdk">
    Official Node.js SDK for Roark
  </Card>

  <Card title="Python SDK" icon="file-code" href="/documentation/sdks/python-sdk">
    Python integration library
  </Card>
</CardGroup>

## OpenAPI Specification

<Card title="View Full Specification" icon="code" href="https://api.roark.ai/doc">
  Explore our complete OpenAPI specification for detailed endpoint documentation
</Card>
