Documentation Index
Fetch the complete documentation index at: https://apidocs.mor.org/llms.txt
Use this file to discover all available pages before exploring further.
Welcome to the Morpheus Inference API
The Morpheus Inference API provides a simple method for users to access the Morpheus Inference Marketplace. This API is fully OpenAI-compatible, enabling seamless integration with existing AI applications while utilizing a decentralized marketplace to protect you and your data.OpenAI Compatibility
The Morpheus Inference API implements the OpenAI API specification, ensuring compatibility with existing OpenAI clients and tools. Simply change the base URL and API key to switch from OpenAI to Morpheus:- curl
- Python
- JavaScript
- TypeScript
Base URL
/api/v1. For example:
- Models:
https://api.mor.org/api/v1/models - Chat:
https://api.mor.org/api/v1/chat/completions - Embeddings:
https://api.mor.org/api/v1/embeddings
Authentication
The Inference API uses API key authentication. Generate your API key from the Admin Portal at app.mor.org. Include your API key in theAuthorization header:
API Categories
- Models: List and query available AI models and bids
- Chat: OpenAI-compatible chat completion endpoints
- Embeddings: Embeddings endpoint to support vector storage (RAG)
- Utility: Health Checks
Rate Limits
Rate limits are applied at the user level and vary based on your account tier. Contact support for enterprise rate limits.Error Handling
The API returns standard HTTP status codes:200- Success201- Created204- No Content (successful deletion)400- Bad Request401- Unauthorized403- Forbidden404- Not Found422- Validation Error500- Internal Server Error

