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

# Judge.me (OAuth)

> Integrate your application with the Judge.me API

## 🚀 Quickstart

Connect to Judge.me with Nango and see data flow in 2 minutes.

<Steps>
  <Step id="create-integration" title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to **Integrations** -> *Configure New Integration* -> *Judge.me (OAuth)*.
  </Step>

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

  <Step id="call-judgeme-api" title="Call the Judge.me API">
    Let's make your first request to the Judge.me API. Replace the placeholders below with your Nango API key, integration ID, and connection ID:

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/api/v1/reviews" \
          -H "Authorization: Bearer <NANGO-API-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </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.get({
            endpoint: '/api/v1/reviews',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

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

    Or fetch credentials with the [Node SDK](/docs/reference/sdks/node#get-a-connection-with-credentials) or [API](/docs/reference/api/connection/get).

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

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

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Judge.me (OAuth) integration guides

Nango maintained guides for common use cases.

* [How do I link my account?](/docs/api-integrations/judgeme-oauth/connect)
  Find your Judge.me shop domain to connect your account.

* [How to register your own Judge.me OAuth app](/docs/api-integrations/judgeme-oauth/how-to-register-your-own-judgeme-oauth-api-oauth-app)
  Register an OAuth app with Judge.me and obtain credentials to connect it to Nango

Official docs: [Judge.me API documentation](https://judge.me/api)

## 🧩 Pre-built syncs & actions for Judge.me (OAuth)

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](/docs/guides/functions/functions-guide) independently.</Tip>

***
