> ## Documentation Index
> Fetch the complete documentation index at: https://developer.fin.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fin.com Setup Guide

> How to get onboarded, sign in to the Orchestration Dashboard, and issue your first API keys.

Getting set up takes two things: a commercial conversation with our team, and a few minutes in the Orchestration Dashboard to issue your keys.

## How do I get started with the platform?

<Steps>
  <Step title="Contact sales">
    Start by [booking a call with our team](https://calendar.app.google/7isCxrBmR8hLoND2A). We will walk through your use case, the corridors you need, and get your account set up.
  </Step>

  <Step title="Once onboarded, go to the site">
    Visit [orchestration.fin.com](https://orchestration.fin.com) and submit the registered email

    <Frame caption="The registration screen">
      <img src="https://mintcdn.com/fincom/I3xrdkmgSvHEQjsK/images/Sign-up.png?fit=max&auto=format&n=I3xrdkmgSvHEQjsK&q=85&s=5d8575c9d79b7d769e280fde3f9a6c72" alt="Sign Up Screen" width="1600" height="913" data-path="images/Sign-up.png" />
    </Frame>
  </Step>

  <Step title="Verify">
    Enter the One-Time Password (OTP) sent to your registered contact method to verify your identity.
  </Step>

  <Step title="Access the Dashboard">
    Once verified, you will be automatically redirected to your account dashboard.
  </Step>

  <Step title="Generate Keys">
    Navigate to the **API Keys** menu to issue your initial set of keys and begin exploring our API collection.
  </Step>
</Steps>

## API base URLs

Your keys work against two environments. Sandbox mirrors production and moves no real money, so build against it first.

| Environment | Base URL                      |
| :---------- | :---------------------------- |
| Sandbox     | `https://sandbox.api.fin.com` |
| Production  | `https://api.fin.com`         |

The API uses OAuth 2.0 client credentials. Exchange your client ID and secret for an access token, refresh it without re-authenticating, and send it on every request. See [Issue a Token](/api-reference/authentication/issue-a-token).

## OpenAPI spec

The full specification is published as a single YAML file. Import it into Postman, Insomnia, or a client generator to scaffold your integration.

<a href="https://developer.fin.com/api-reference/openapi.yaml" download="FinOpenAPI.yaml">Download the OpenAPI spec (YAML)</a>

To fetch it from the command line:

```bash theme={null}
curl -o FinOpenAPI.yaml https://developer.fin.com/api-reference/openapi.yaml
```

The file is regenerated on every deploy, so it always matches what you see in the API Reference.

## Can I access Production API keys immediately?

To ensure security and compliance, Production keys are only issued after the commercial agreements & sandbox integration is completed.

<Note>
  **Need help moving to production?**

  Please contact in your dedicated Slack for more information on the onboarding process.
</Note>
