FruxonDocs

API Reference

Build powerful AI agent workflows with our comprehensive REST API. Explore 50 endpoints across 5 categories.
50
Endpoints
13
Groups
5
Categories
Run in Postman

API Categories

Base URL

All API requests should be made to:

https://api.fruxon.com

Authentication

The API supports two authentication methods:

User Token (Most endpoints)

Most endpoints require a Bearer token from your logged-in session:

curl -X GET "https://api.fruxon.com/v1/tenants" \
  -H "Authorization: Bearer YOUR_USER_TOKEN" \
  -H "Content-Type: application/json"

API Key (Agent execution)

Agent execution endpoints use an API key in the X-API-KEY header:

curl -X POST "https://api.fruxon.com/v1/tenants/{tenant}/agents/{agent}:execute" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Generate API Keys

To generate an API key for agent execution, see the Settings guide.

Rate Limiting

API requests are rate limited to ensure fair usage. Rate limit headers are included in all responses:

  • X-RateLimit-Limit: Maximum requests per window
  • X-RateLimit-Remaining: Remaining requests in current window
  • X-RateLimit-Reset: Unix timestamp when the window resets

On this page