> ## 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.

# Buffer

> Connect your application to the Buffer API

## 🚀 Quickstart

Connect to Buffer with Nango and see data flow in minutes. You'll need to [register your own OAuth app](#-buffer-integration-guides) to get a Client ID and Secret.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to Integrations -> *Configure New Integration* -> *Buffer*. Follow the [setup guide](/api-integrations/buffer/how-to-register-your-own-buffer-oauth-app) to register an OAuth app and obtain your Client ID and Client Secret, then enter them in the integration settings.
  </Step>

  <Step title="Authorize Buffer">
    Go to Connections -> *Add Test Connection* -> *Authorize*, then log in to Buffer. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the Buffer API">
    Make your first request to the Buffer API (fetch your organizations). Replace the placeholders below with your [API key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/" \
          -X POST \
          -H "Authorization: Bearer <NANGO-API-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>" \
          -H "Content-Type: application/json" \
          -d '{"query": "query GetOrganizations {\n  account {\n    organizations {\n      id\n      name\n      ownerEmail\n    }\n  }\n}"}'
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-API-KEY>' });

        const res = await nango.post({
            endpoint: '/',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>',
            data: {
                query: `query GetOrganizations {
                    account {
                        organizations {
                            id
                            name
                            ownerEmail
                        }
                    }
                }`
            }
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    ✅ You're connected! Check the Logs tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.
  </Step>
</Steps>

## 📚 Buffer integration guides

Nango-maintained guides for common use cases.

* [How to register your own Buffer OAuth app](/api-integrations/buffer/how-to-register-your-own-buffer-oauth-app)
  Register an OAuth app with Buffer and obtain credentials to connect it to Nango

Official docs: [Buffer API documentation](https://developers.buffer.com/guides/introduction.html)

## 🧩 Pre-built syncs & actions for Buffer

Enable them in your dashboard. Extend and customize to fit your needs.

*No pre-built syncs or actions available yet.*

<Tip>Not seeing the integration you need? [Build your own](/guides/functions/functions-guide) independently.</Tip>

***
