Getting Started with MOOD MNKY APIs
This guide provides a quick introduction to working with MOOD MNKY APIs, helping you understand the key concepts and get up and running quickly.API Ecosystem Overview
MOOD MNKY offers several categories of APIs:- Platform APIs - Core functionality and e-commerce capabilities
- AI & Workflow APIs - AI model hosting, workflow automation, and agent integration
- Integration APIs - Connectivity with third-party services like Notion and Bungie
Authentication
Most MOOD MNKY APIs require authentication. The standard authentication method is JWT bearer tokens:- Register an application in the MOOD MNKY Developer Portal
- Use your client credentials to request an access token
- Include the token in your API requests
Making Your First API Request
Here’s a simple example of making a request to the Core API:Using the SDKs
For easier integration, we offer SDKs for popular programming languages:API References & Playgrounds
Each API includes interactive documentation where you can:- Explore available endpoints
- Test API calls directly in your browser
- See request and response examples
Common Concepts
Rate Limiting
API requests are subject to rate limiting to ensure fair usage. Rate limits are typically applied per API key and reset hourly. When a rate limit is exceeded, the API returns a429 Too Many Requests status code.
See Rate Limiting for details.
Pagination
List endpoints support pagination for large result sets:limit- Number of items to return (default: 20, max: 100)offset- Number of items to skip (for offset-based pagination)cursor- Cursor for cursor-based pagination (when available)
Error Handling
API errors follow a consistent format:Next Steps
Now that you understand the basics, you can:- Explore the specific API documentation for your use case
- Set up proper authentication for your application
- Try out the interactive API playgrounds
- Check out our API standards to understand our API design principles