Quickstart
Build an integration with GitBook’s developer platform in minutes
Last updated
Was this helpful?
Build an integration with GitBook’s developer platform in minutes
Last updated
Was this helpful?
Was this helpful?
GitBook’s developer platform allows you to build integrations that seamlessly connect GitBook to internal tools, third‑party services, custom workflows and more.
You can use the integration platform to:
Automate repetitive tasks: Sync content, manage permissions, or trigger actions without leaving GitBook.
: Enhance documentation pages with custom built UI, buttons, and dynamic content.
Integrate data from other tools
Securely connect systems: Handle authentication via OAuth and manage access control programmatically.
You’ll need a GitBook account to start using the developer platform. If you don’t already have an account, you can sign up for free here.
After creating a GitBook account, you'll be able to create a personal access token in your .
This token represents your user in GitBook, and allows you to make API calls, create integrations, and publish them to any GitBook spaces you're a part of to test them.
As always with access tokens, this token is specific to your user and should not be shared for use outside of your personal account.
Once you have your personal access token, you'll want to understand the differences between the pieces of the GitBook Integrations Platform in order to start developing your first app.
In order to on your local machine, you’ll first need to publish your integration. In the root of your integration, run:
This will publish your integration to GitBook, and return a link with which you can install your integration. After installing your integration into your organization, space, or site, you can then run the development command to work on your integration locally.
Return to your integration on your local machine, and in the root of the integration, run the following development command:
After running the development script, you’re ready to start building your integration. Any changes made in your local version of the integration will be sent to the space you have your integration installed in. You’ll also be able to see logs in your console where applicable.
In order to publish your integration, your integration must:
Include a unique name
Include an organization id that your authenticated user is a member of.
After bootstrapping your integration, you’re ready to open your integration in an IDE and start building.
Configure your integration
Build components
Publish your integration
gitbook publishnpm install @gitbook/cli -ggitbook newgitbook devgitbook auth