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/jobs \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"employerId": "<string>",
"name": "<string>",
"description": "<string>",
"jobDescriptionHref": "<string>",
"locations": [
{
"type": "location",
"locationId": "new-york-ny"
}
],
"salaryMin": 123,
"salaryMax": 123,
"onetSocCode": "<string>",
"skills": [
{
"skillId": "<string>",
"skillName": "<string>",
"level": 3,
"confidence": 0.5
}
],
"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 jobs for the authenticated organization
curl --request GET \
--url https://api.mapademics.com/v1/jobs \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"employerId": "<string>",
"name": "<string>",
"description": "<string>",
"jobDescriptionHref": "<string>",
"locations": [
{
"type": "location",
"locationId": "new-york-ny"
}
],
"salaryMin": 123,
"salaryMax": 123,
"onetSocCode": "<string>",
"skills": [
{
"skillId": "<string>",
"skillName": "<string>",
"level": 3,
"confidence": 0.5
}
],
"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?