For the complete documentation index, see llms.txt. This page is also available as Markdown.

API

Welcome to the Jimo API documentation. This API lets you programmatically interact with your Jimo project using credentials dedicated to server-to-server integrations.

Base URL

Environment
Base URL

Production

https://karabor.usejimo.com

All endpoints documented here are relative to this base URL.

Authentication

Every request must include an Authorization header:

Authorization: Bearer <token>

Where <token> is the Base64 encoding of your credentials:

base64(<client>:<secret>)

Example

If your credentials are:

  • Client: a1b2c3d4-e5f6-7890-abcd-ef1234567890

  • Secret: my-secret-key

Encode a1b2c3d4-e5f6-7890-abcd-ef1234567890:my-secret-key in Base64 and send:

Authentication errors

HTTP Status
Error code
Description

403

ACCESS_DENIED

Missing Authorization header

403

ACCESS_DENIED_INVALID_TOKEN

Token is not a valid Base64 client:secret pair

403

ACCESS_DENIED_TOKEN

Credentials are invalid or the API integration is disabled

Available endpoints

Find available endpoints here

Endpoints

General notes

  • Credentials are scoped to a single Jimo project. The project is resolved automatically from your API credentials — you do not need to pass a projectId.

  • Each successful authenticated request increments the API usage counter associated with your credentials.

  • File upload limits may vary per project. The default maximum CSV file size is 50 MB.

Last updated