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

# Introduction

> Use the Triple Session API to access call data, coaching reports, and workspace insights programmatically.

The Triple Session API gives you programmatic access to your workspace data — call reports, transcripts, scorecard results, and more. Use it to build custom integrations, export data to your own tools, or automate workflows that go beyond the built-in automation features.

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    Get your API key and learn how to authenticate requests.
  </Card>

  <Card title="Endpoints" icon="code">
    Browse all available endpoints with live request examples — listed in the **Endpoints** section of the sidebar.
  </Card>
</CardGroup>

## Base URL

All API endpoints are scoped to your workspace. Requests use the following base URL:

```
https://app.triplesession.com/api/public/ai-coach/workspaces/{workspace_id}
```

Your `workspace_id` is a UUID found in **Settings → API**. Every request you make must include it in the URL path.

## What you can do

* Fetch call reports and transcripts
* Query scorecard results for reps and calls
* Access deal insights and meeting data
* Build custom dashboards or export pipelines

## Rate limits and errors

The API uses standard HTTP status codes. `4xx` responses indicate a client error (missing auth, bad parameters). `5xx` responses indicate a server error — retry with exponential backoff.

<Note>
  Rate limit details and error code references are listed on the [Authentication](/authentication) page.
</Note>
