Quick Start Guide
1 Authentication
Use your API key in the Authorization header for all requests.
curl -X GET 'https://api.mmmn.dev/v1/data' \
-H 'Authorization: Bearer YOUR_API_KEY'
2 Available Endpoints
GET
/v1/search?query=
POST
/v1/analyze
3 Response Formats
All responses return standardized JSON structures:
{
"status": "success",
"data": {},
"meta": {
"request_id": "req_389d6s8d89s",
"ratelimit_remaining": 897
}
}