Authorizations
API key for authentication
Query Parameters
Number of items to return
Required range:
x <= 100Number of items to skip
curl --request GET \
--url https://api.mapademics.com/v1/courses \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"code": "<string>",
"description": "<string>",
"defaultSectionId": "<string>",
"sections": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 123,
"limit": 123,
"offset": 123,
"hasMore": true
}
}List all courses for the authenticated organization
curl --request GET \
--url https://api.mapademics.com/v1/courses \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"code": "<string>",
"description": "<string>",
"defaultSectionId": "<string>",
"sections": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 123,
"limit": 123,
"offset": 123,
"hasMore": true
}
}API key for authentication
Number of items to return
x <= 100Number of items to skip
Was this page helpful?