Sign in

Execute GraphQL query

documented

Submit a GraphQL query or mutation to the monday.com API to read or modify data. The API root is https://api.monday.com/v2 and requests must include an Authorization header with your API token. ([developer.monday.com](https://developer.monday.com/api-reference/docs/getting-started?utm_source=openai))

POST /v2GraphQL APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl \"https://api.monday.com/v2\" \\\n  -X POST \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Authorization: {{MONDAY_API_KEY}}\" \\\n  -d '{\\"query\\": \\\"query ($boardId: Int!) { boards(ids: [$boardId]) { id name } }\\\", \\\"variables\\\": {\\"boardId\\": {{$board_id}}}}'
Execute GraphQL query · monday.com · OpenIntegrations