# Authentication

## Base URL

The base URL for all API requests is:

**`https://api.orbitfin.ai`**

This URL serves as the root endpoint for accessing the client's API services. All API requests should be directed to this base URL, followed by the specific endpoint path. Ensure that you use the correct HTTP method (GET, POST, PUT, DELETE) and include any required authentication headers when making requests.

## API keys

The Orbitfin API uses API keys for authentication. You can create API keys at Orbit Insight platform.&#x20;

Register your account for free at <https://insight.orbitfin.ai/>

Follow below steps to create your keys

<figure><img src="/files/9jC9DDQe22WfF0leZ1s7" alt=""><figcaption></figcaption></figure>

Remember that your API key is a secret! Do not share it with others or expose it in any client-side code (browsers, apps). Production requests must be routed through your own backend server where your API key can be securely loaded from an environment variable or key management service.

All API requests should include your API key in an Authorization HTTP header as follows:

```
X-API-KEY: <your-api-key>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.orbitfin.ai/orbit-api-reference/overview/authentication.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
