Burp Suite Enterprise Edition is now available in our secure Cloud  –  Learn more

Enterprise Edition

Getting started with the GraphQL API

  • Last updated: April 26, 2024

  • Read time: 2 Minutes

You can use the GraphQL API to integrate Burp Suite Enterprise Edition with your own software or a third-party tool. This page explains some points you should be aware of as you get started with the GraphQL API.

Creating an API user

To use the GraphQL API you must create a dedicated API user in Burp Suite Enterprise Edition. For instructions on how to create an API user, see Creating API users.

You can only use the API to perform actions that your user has permission for. For instructions on how to appropriately configure the permissions for the user, see Role-based access control.

Structuring the GraphQL call

All operations are performed by sending POST requests to your-web-server-url/graphql/v1. You do not need to use different endpoints for different query or mutation types as you would in a REST API.

To authorize your request, enter an Authorization header with your API key as its value.

Example request

This example shows a GetSiteTree request in cURL format.

curl --request POST \ --url [your-burp-enterprise-server-url]:[port]/graphql/v1 \ --header 'Authorization: [api-key]' \ --header 'Content-Type: application/json' \ --data '{"query":"query GetSiteTree {\nsite_tree {\nsites {\nid\nname\nscope {\nincluded_urls\nexcluded_urls\n}\napplication_logins {\nlogin_credentials {\nlabel\nusername\n}\nrecorded_logins {\nlabel\n}\n}\nparent_id\nextensions {\nid\n}\n}\nfolders {\nid\nname\n}\n}\n}","operationName":"GetSiteTree"}'

Using Insomnia

We recommend that you use Insomnia to build and test GraphQL calls. Insomnia integrates with our GraphQL schema documentation and allows you to easily convert your GraphQL request to other formats.

To access our GraphQL schema documentation in Insomnia, click the schema button under the GraphQL Query tab. This brings up a searchable menu of Burp Suite Enterprise Edition queries and mutations.

To use Insomnia to convert your GraphQL request to other formats, right-click the request and select Generate Code.

Insomnia Screenshot

Related pages:

For worked examples of some common tasks using the GraphQL API, see Performing common tasks with the GraphQL API.

For more comprehensive reference information and a further introduction to the GraphQL API, see Full reference information on the GraphQL API.

Was this article helpful?