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

# Introduction

> Read-only HTTP access to your Artanis prompts, knowledge docs, and traces

## Welcome

The Artanis REST API gives you programmatic, read-only access to the data behind your projects: the prompts your pipelines run, the knowledge documents they consult, and the traces (with spans, approved outputs, and feedback) they produce.

Use it to:

* Pull the active prompt or knowledge doc version into another system
* Sync traces and feedback into your own analytics or evaluation tooling
* Build dashboards on top of approved-vs-original outputs without going through the Artanis UI

<Info>
  Every endpoint is scoped to a single organization and project. Authentication and project resolution are handled per
  request — there is no session state.
</Info>

## Get Started

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    API key headers and how requests are scoped to an organization
  </Card>

  <Card title="REST Overview" icon="globe" href="/rest-api/overview">
    Base URL, project parameters, and error format
  </Card>

  <Card title="Prompts" icon="message" href="/rest-api/prompts">
    Fetch active prompt versions and their history
  </Card>

  <Card title="Traces" icon="diagram-project" href="/rest-api/traces">
    Fetch traces with spans, approved outputs, and feedback
  </Card>
</CardGroup>
