Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
🚀 Quickstart
🧑💻 OAuth app setup
🔗 Useful links
🚨 API gotchas
Create an integration
In Nango (free signup), go to Integrations -> Configure New Integration -> Bullhorn. Nango doesn’t provide a test OAuth app for Bullhorn yet. You’ll need to set up your own by following these instructions. After that, make sure to add the OAuth client ID and secret in the integration settings in Nango. Authorize Bullhorn
Go to Connections -> Add Test Connection -> Authorize, then enter your Bullhorn API Username and Password. Later, you’ll let your users do the same directly from your app. Call the Bullhorn API
Let’s make your first request to the Bullhorn API (check current session expiration date). Replace the placeholders below with your secret key, integration ID, and connection ID:curl "https://api.nango.dev/proxy/ping" \
-H "Authorization: Bearer <NANGO-SECRET-KEY>" \
-H "Provider-Config-Key: <INTEGRATION-ID>" \
-H "Connection-Id: <CONNECTION-ID>"
Install Nango’s backend SDK with npm i @nangohq/node. Then run:import { Nango } from '@nangohq/node';
const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });
const res = await nango.get({
endpoint: '/ping',
providerConfigKey: '<INTEGRATION-ID>',
connectionId: '<CONNECTION-ID>'
});
console.log(res.data);
Or fetch credentials dynamically via the Node SDK or API. ✅ You’re connected! Check the Logs tab in Nango to inspect requests.Create a Bullhorn account
If you don’t already have a Bullhorn account, you can request a Live Demo. This is the first step toward setting up a new account with Bullhorn. Obtain Client Credentials
Go to the Bullhorn Customer Hub and create a support ticket to request API access.In your request, specify that you need OAuth 2.0 API keys for your integration. For the Redirect URI, specify https://api.nango.dev/oauth/callback. Obtain your OAuth credentials
Once approved, Bullhorn will provide you with:
Client ID
Client Secret
Redirect URI (the callback URL you provided during registration)
Save these credentials securely as you’ll need them when configuring your integration in Nango.