DroneDeploy GraphQL API

DroneDeploy's GraphQL API is the primary programmatic interface for the DroneDeploy reality-capture platform. A single POST endpoint at https://www.dronedeploy.com/graphql exposes a strongly-typed schema rooted at the `viewer` object that gives the authenticated user access to organizations, plans (MapPlan and other Plan variants), exports, layers, geometry, and processing status. Forward, cursor-based pagination via Relay-style edges/nodes/pageInfo. Authenticated with `Authorization Bearer` API keys obtained from DroneDeploy Support or via a Developer Partner / Enterprise account.

OpenAPI Specification

drone-deploy-graphql-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: DroneDeploy GraphQL API
  description: 'DroneDeploy''s public GraphQL API exposes the DroneDeploy reality-capture platform (aerial photogrammetry, ground 360 capture, robotics, exports) through a single POST endpoint at https://www.dronedeploy.com/graphql.

    All requests are GraphQL queries or mutations sent as JSON to /graphql. Forward, cursor-based pagination is used for all one-to-many relationships (Relay-style edges / nodes / pageInfo with hasNextPage and endCursor). Authentication uses an API key passed via the Authorization: Bearer header. API keys are issued by DroneDeploy Support for existing developers or the Sales team for Developer Partner and Enterprise accounts.

    Interactive exploration is available at https://www.dronedeploy.com/graphiql/ where logged-in DroneDeploy users can introspect the live schema.

    '
  version: '2026-05-25'
  contact:
    name: DroneDeploy Support
    url: https://help.dronedeploy.com/hc/en-us
  license:
    name: DroneDeploy Master Services Agreement
    url: https://www.dronedeploy.com/legal/master-services-agreement
servers:
- url: https://www.dronedeploy.com
  description: Production GraphQL endpoint
security:
- BearerAuth: []
tags:
- name: GraphQL
  description: Single GraphQL endpoint operations
paths:
  /graphql:
    post:
      summary: Execute GraphQL Operation
      description: 'Execute any GraphQL query, mutation, or introspection request against the DroneDeploy schema. The same endpoint serves the `viewer` query, the `node(id:)` interface, the `plans` connection on an organization, the `exports` connection on a MapPlan, and the `createExport` mutation (and other mutations exposed by the live schema).

        '
      operationId: executeGraphQLOperation
      tags:
      - GraphQL
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GraphQLRequest'
            examples:
              GetViewer:
                summary: Fetch the authenticated viewer
                value:
                  query: "query GetViewer {\n  viewer {\n    id\n    username\n    organization {\n      id\n      name\n    }\n  }\n}\n"
              GetPlans:
                summary: Fetch first 50 plans for the organization
                value:
                  query: "query GetPlans {\n  viewer {\n    organization {\n      plans(first: 50) {\n        pageInfo { hasNextPage endCursor }\n        edges {\n          cursor\n          node {\n            id\n            name\n            geometry { lat lng }\n            location { lat lng }\n            dateCreation\n          }\n        }\n      }\n    }\n  }\n}\n"
              GetExports:
                summary: Fetch exports for a MapPlan
                value:
                  query: "query GetExports($id: ID!) {\n  node(id: $id) {\n    ... on MapPlan {\n      exports(first: 5) {\n        edges {\n          node {\n            id\n            user { username }\n            parameters {\n              projection\n              merge\n              contourInterval\n              fileFormat\n              resolution\n            }\n            status\n            dateCreation\n            downloadPath\n          }\n        }\n      }\n    }\n  }\n}\n"
                  variables:
                    id: MapPlan:5a0de0835f1e08eaabc732bd
              CreateExport:
                summary: Create an orthomosaic export
                value:
                  query: "mutation CreateExport($input: CreateExportInput!) {\n  createExport(input: $input) {\n    export { id }\n  }\n}\n"
                  variables:
                    input:
                      planId: MapPlan:5a0ddee5a6b7d90aecdc2f1d
                      parameters:
                        layer: ORTHOMOSAIC
      responses:
        '200':
          description: GraphQL response (errors are reported in the `errors` array, not via HTTP status)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphQLResponse'
        '401':
          description: Missing or invalid Authorization Bearer token
        '403':
          description: Authenticated but not authorized for the requested resource
components:
  schemas:
    GraphQLRequest:
      type: object
      required:
      - query
      properties:
        query:
          type: string
          description: GraphQL query or mutation document
        operationName:
          type: string
          description: Optional operation name when the document contains multiple operations
        variables:
          type: object
          description: Variable values referenced by `$variable` placeholders in the query
          additionalProperties: true
    GraphQLResponse:
      type: object
      properties:
        data:
          type: object
          description: Result of the GraphQL operation (shape mirrors the query)
          additionalProperties: true
        errors:
          type: array
          description: GraphQL errors (per spec); present when the operation failed in part or whole
          items:
            $ref: '#/components/schemas/GraphQLError'
        extensions:
          type: object
          description: Server-defined extensions to the GraphQL response
          additionalProperties: true
    GraphQLError:
      type: object
      properties:
        message:
          type: string
        path:
          type: array
          items:
            oneOf:
            - type: string
            - type: integer
        locations:
          type: array
          items:
            type: object
            properties:
              line:
                type: integer
              column:
                type: integer
        extensions:
          type: object
          additionalProperties: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'DroneDeploy API key sent as `Authorization: Bearer <api_key>`. Keys are issued by DroneDeploy Support (existing developers) or Sales (Developer Partner / Enterprise accounts). The same key is used for all GraphQL operations and is tied to the issuing user''s account.

        '