Monday

Monday — free-tier JSON endpoint

🔧 Developer ToolsHEALTHYchecked 4h ago
AUTH APIKEYCORS AGENT HTTPS COMMERCIAL ?

Monday offers a free API tier. We verified JSON on a sample GET (Documents & Productivity). Check provider docs for key requirements and limits.

98HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 98 · healthy
Uptime history
100%90 days
100%30 days
207P50 · ms
1086P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 79 ms, slowest 719 ms, most recent 132 ms.
Live response samplecaptured by our last successful check
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
            }
          ]
        }
      ]
    }
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6HealthyFULL DOCS ↗
Monitored path responding — GET /v2/get_schema207 mschecked 4h ago
GET/v2/get_schemaPROBED

Monday — free-tier JSON endpoint

GET/v2

V2 — documented GET route.

GET/v2/1

V2 details by ID (example: 1).

GET/v2?limit=10

V2 — documented GET route.

GET/v2/search?q=test

Search by query parameters.

GET/v2/

V2 — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

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?

As of our last scheduled check, Monday is healthy with 100% uptime over 90 days and a 207 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.