Monday
Monday — free-tier JSON endpoint
Monday offers a free API tier. We verified JSON on a sample GET (Documents & Productivity). Check provider docs for key requirements and limits.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.monday.com/v2/get_schema
{
"data": {
"__schema": {
"queryType": {
"name": "Query",
"kind": "OBJECT"
},
"mutationType": {
"name": "Mutation",
"kind": "OBJECT"
},
"subscriptionType": null,
"types": [
{
"kind": "OBJECT",
"name": "Query",
"description": "Root query type for the Dependencies service",
"fields": [
{
"name": "audit_logs",
"description": "Retrieve audit logs for your Monday account. You can\n filter logs by event types, user ID, IP address and start and end date.\n \n Here is an example audit log query:\n\n query {\n audit_logs(\n user_id: \"1234567890\"\n events: [\"login\", \"logout\"]\n ip_address: \"123.123.123.123\"\n start_time: \"2021-01-01T00:00:00Z\"\n end_time: \"2021-01-01T23:59:59Z\"\n limit: 100\n page: 1\n ) {\n logs {\n timestamp\n event\n ip_address\n user {\n id\n name\n email\n }\n activity_metadata\n }\n pagination {\n page\n page_size\n has_more_pages\n next_page_number\n }\n }\n }\n\n To get the list of all possible event types, you should use the audit_event_catalogue query like this:\n\n query {\n audit_event_catalogue {\n name\n description\n metadata_details\n }\n }",
"args": [
{
"name": "limit",
"description": "Number of items to get, the default is 25.",
"type": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
},
"defaultValue": "25",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "page",
"description": "Page number to get, starting at 1.",
"type": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
},
"defaultValue": "1",
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
"kind": "OBJECT",
"name": "AuditLogPage",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "audit_event_catalogue",
"description": "Lists all the audit event types that can be logged and information about them.\n \n Example query:\n\n query {\n audit_event_catalogue {\n name\n description\n metadata_details\n }\n }",
"args": [],
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "OBJECT",
"name": "AuditEventCatalogueEntry",
"ofType": null
}
}
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
"interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
"name": "Int",
"description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
}
],
"directives": [
{
"name": "cost",
"description": null,
"locations": [
"ARGUMENT_DEFINITION",
"ENUM"
],
"args": [
{
"name": "weight",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
]
},
{
"name": "listSize",
"description": null,
"locations": [
"FIELD_DEFINITION"
],
"args": [
{
"name": "assumedSize",
"description": null,
"type": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "slicingArguments",
"description": null,
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
]
}
]
}
}
}curl "https://api.monday.com/v2/get_schema"const res = await fetch("https://api.monday.com/v2/get_schema");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.monday.com/v2/get_schema")
print(res.json())/v2/get_schemaPROBEDMonday — free-tier JSON endpoint
/v2V2 — documented GET route.
/v2/1V2 details by ID (example: 1).
/v2?limit=10V2 — documented GET route.
/v2/search?q=testSearch by query parameters.
/v2/V2 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Monday: common questions
Is Monday free to use?
Yes — Monday is a free developer tools API. Free tier: Free tier — API key may be required for production. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Monday need an API key?
Yes — Monday needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call Monday from the browser?
Yes — Monday returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Monday up right now?
Monday is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.