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

# Transporeon Carrier Interface (Client Credentials)

> Integrate your application with the Transporeon Carrier Interface API

## 🚀 Quickstart

Connect to the Transporeon Carrier Interface with Nango and see data flow in 2 minutes. This API uses OAuth 2.0 client credentials — no user redirect required.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Transporeon Carrier Interface (Client Credentials)*.
  </Step>

  <Step title="Connect your Transporeon account">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection*. Enter your Client ID and Client Secret, then save.
  </Step>

  <Step title="Call the Transporeon Carrier Interface API">
    Make your first request. Replace the placeholders with your [Environment API key](/docs/reference/backend/http-api/api-keys), [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/v1/transport" \
          -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({ apiKey: '<NANGO-API-KEY>' });

        const res = await nango.get({
            endpoint: '/v1/transport',
            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](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

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

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

## 📚 Transporeon Carrier Interface integration guides

Nango maintained guides for common use cases.

* [How do I link my account?](/docs/api-integrations/transporeon-carrier-oauth2-cc/connect)
  Obtain your OAuth client ID and secret from Transporeon to connect it to Nango

Official docs: [Transporeon Carrier Standard Interface](https://xch.transporeon.com/carrier_interface/openapi/v1/swagger.json)

<Note>
  This API also supports HTTP Basic Auth — see [Transporeon Carrier Interface (Basic Auth)](/docs/api-integrations/transporeon-carrier-basic). The public sandbox (username `demo@123`, password `demo`) only works with the Basic Auth integration, not this OAuth 2.0 one.
</Note>

## 🧩 Pre-built syncs & actions for Transporeon Carrier Interface

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

***
