Jobber GraphQL API

The GraphQL API from Jobber — 1 operation(s) for graphql.

Operations 1

POST /api/graphql Execute A GraphQL Query Or Mutation #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/jobber-graphql-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

jobber-graphql-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jobber Developer Graph QL API
  version: '2025-04-16'
  description: 'The Jobber Developer API is a GraphQL API for accessing and modifying data on Jobber accounts.

    A single HTTPS endpoint accepts POST requests containing GraphQL `query`, `variables`, and

    `operationName` fields. Authentication is OAuth 2.0 bearer access tokens. API versioning is

    date-based and selected via the `X-JOBBER-GRAPHQL-VERSION` header. Rate limiting uses a

    leaky-bucket query-cost system in addition to a 2,500 requests per 5 minutes DDoS guard.

    '
  contact:
    name: Jobber API Support
    email: api-support@getjobber.com
    url: https://developer.getjobber.com
  license:
    name: Jobber Developer Terms of Service
    url: https://developer.getjobber.com
servers:
- url: https://api.getjobber.com
  description: Jobber production GraphQL endpoint
tags:
- name: GraphQL
paths:
  /api/graphql:
    post:
      operationId: executeGraphQLQuery
      summary: Execute A GraphQL Query Or Mutation
      description: 'Single GraphQL endpoint for executing queries and mutations against the Jobber Developer API.

        Top-level query objects include Clients, Requests, Quotes, Jobs, Invoices, Visits,

        Assessments, Properties, Products, Services, Expenses, TimeSheetEntries, Users, Accounts,

        and CustomFieldConfigurations. Mutations support create / edit / delete operations on most

        resources, plus archive, activate, and event-style transitions (e.g. invoice approval,

        payment recording).

        '
      tags:
      - GraphQL
      parameters:
      - name: X-JOBBER-GRAPHQL-VERSION
        in: header
        description: Date-based API version to pin the request to (e.g. `2025-04-16`).
        required: false
        schema:
          type: string
          example: '2025-04-16'
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphQLRequest'
            examples:
              listJobs:
                summary: List Jobs
                value:
                  query: "query SampleQuery {\n  jobs {\n    nodes {\n      id\n      jobNumber\n      title\n    }\n  }\n}\n"
              listClients:
                summary: List Clients With Pagination
                value:
                  query: "query Clients($first: Int!, $after: String) {\n  clients(first: $first, after: $after) {\n    nodes { id firstName lastName companyName emails { address } }\n    pageInfo { hasNextPage endCursor }\n  }\n}\n"
                  variables:
                    first: 25
      responses:
        '200':
          description: GraphQL response. `data` contains the result; `errors` contains any errors. `extensions.cost` includes throttling cost metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphQLResponse'
        '401':
          description: Unauthorized — invalid or missing access token.
        '429':
          description: Too Many Requests — DDoS limit (2500 / 5 min) or GraphQL cost throttling.
components:
  schemas:
    GraphQLRequest:
      type: object
      required:
      - query
      properties:
        query:
          type: string
          description: GraphQL document containing one or more operations.
        variables:
          type: object
          additionalProperties: true
          description: Variables referenced by the GraphQL document.
        operationName:
          type: string
          description: Name of the operation to execute when the document contains multiple.
    GraphQLResponse:
      type: object
      properties:
        data:
          type:
          - object
          - 'null'
          additionalProperties: true
        errors:
          type: array
          items:
            $ref: '#/components/schemas/GraphQLError'
        extensions:
          type: object
          properties:
            cost:
              $ref: '#/components/schemas/CostExtension'
    CostExtension:
      type: object
      description: Query cost telemetry returned in `extensions.cost`.
      properties:
        requestedQueryCost:
          type: integer
          description: Points the API expected this query to consume.
        actualQueryCost:
          type: integer
          description: Points the query actually consumed.
        throttleStatus:
          type: object
          properties:
            maximumAvailable:
              type: integer
            currentlyAvailable:
              type: integer
            restoreRate:
              type: integer
              description: Points restored per second.
    GraphQLError:
      type: object
      properties:
        message:
          type: string
        path:
          type: array
          items:
            type: string
        extensions:
          type: object
          properties:
            code:
              type: string
              description: Error code (e.g. `THROTTLED`, `UNAUTHENTICATED`).
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth 2.0 Access Token