{ "request": { "method": "POST", "url": "https://api.getjobber.com/api/graphql", "headers": { "Authorization": "bearer YOUR_ACCESS_TOKEN", "Content-Type": "application/json", "X-JOBBER-GRAPHQL-VERSION": "2025-04-16" }, "body": { "query": "query SampleQuery { jobs(first: 10) { nodes { id jobNumber title jobStatus startAt endAt client { id firstName lastName companyName } } pageInfo { hasNextPage endCursor } } }" } }, "response": { "data": { "jobs": { "nodes": [ { "id": "Z2lkOi8vSm9iYmVyL0pvYi8xMjM0NTY3", "jobNumber": 1042, "title": "Spring Lawn Treatment", "jobStatus": "UPCOMING", "startAt": "2026-05-26T13:00:00Z", "endAt": "2026-05-26T15:00:00Z", "client": { "id": "Z2lkOi8vSm9iYmVyL0NsaWVudC8xMjM0NTY3", "firstName": "Pat", "lastName": "Singh", "companyName": null } } ], "pageInfo": { "hasNextPage": true, "endCursor": "MTA" } } }, "extensions": { "cost": { "requestedQueryCost": 60, "actualQueryCost": 12, "throttleStatus": { "maximumAvailable": 10000, "currentlyAvailable": 9988, "restoreRate": 500 } } } } }