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

# API Overview

> REST API reference for Jabrod

# API Overview

The Jabrod REST API allows you to programmatically query your RAG pipelines.

## Base URL

All API requests should be made to:

```
https://api.jabrod.com/api
```

*(Note: During local development, this will be `http://localhost:3000/api`)*

## Core Endpoints

The API is primarily designed for querying pipelines that you have configured in the Jabrod dashboard.

* **Query**: `/rag/query` - Semantic search endpoint that accepts your `rag_` API key.

## Response Format

All successful responses are returned as JSON. Errors are returned with a corresponding HTTP status code (4xx or 5xx) and an error object.

```json theme={null}
{
  "error": "Message describing the error",
  "code": "ERROR_CODE"
}
```
