Skip to main content

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.
{
  "error": "Message describing the error",
  "code": "ERROR_CODE"
}