Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
REST APIRequirements

Get Requirements

GET/api/requirements

Retrieves a list of requirements. The results exclude requirements that have a status of completed or validated.

Query Parameters

ParameterTypeRequiredDescription
site_idstringNoFilter requirements by a specific site ID.
user_idstringNoFilter requirements by a specific user ID.
limitnumberNoThe maximum number of requirements to return. Default: 50, Max: 100.
offsetnumberNoThe number of requirements to skip before returning results. Default: 0.

Example Request

curl -X GET "https://api.makinari.com/api/requirements?site_id=123&limit=10" \ -H "Authorization: Bearer YOUR_API_KEY"

Response

Returns a list of requirements along with pagination information.

{ "success": true, "data": { "requirements": [ { "id": "req_123", "title": "Example Requirement", "status": "pending" } ], "pagination": { "total": 150, "count": 10, "has_more": true, "limit": 10, "offset": 0 } } }
Last updated on