Docs
Choose your preferred AI platform and authentication method to get started with Agentsfera.
OpenAPI REST
Agentsfera OpenAPI REST API
The Agentsfera REST API provides standard HTTP endpoints for integrating MCP functionality into any application or programming language. Built on the OpenAPI 3.0 specification, it enables seamless access to 500+ business integrations through RESTful endpoints that work with cURL, Postman, Python requests, JavaScript fetch, and any HTTP client.
Why Use the REST API?
- Universal Compatibility: Works with any programming language or platform - Python, Ruby, Go, Rust, PHP, shell scripts, or even Excel Power Query.
- No SDK Required: Standard HTTP requests mean zero dependencies - just your language's built-in HTTP library or tools like cURL and Postman.
- OpenAPI 3.0 Specification: Complete interactive documentation with request/response examples, schema definitions, and "Try it out" functionality.
- RESTful Design: Predictable endpoint structure with standard HTTP methods (GET, POST, PUT, DELETE) and conventional status codes.
Getting Started
Access the interactive OpenAPI documentation to explore all available endpoints, authenticate with Bearer tokens in the Authorization header, and make your first API call in seconds using cURL or any HTTP client.
View interactive API documentation
Configuration:
# Optional: Unique identifier for your user across MCP sessions
# Use the same ID to maintain session continuity across reconnects
curl -X GET "https://api.agentsfera.ai/openapi/openapi.json" \
-H "Authorization: Bearer Select/Create new API key" \
-H "Content-Type: application/json" \
-H "user-session-id: your-user-unique-id"