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

# Introduction

> Welcome to Finosu

## Setting up

Finosu is an AI-native loan servicer.

We authenticate over HTTPS using an API key in the `X-API-Key` header.

Sample request:

```bash theme={null}
curl -X GET "https://api.finosu.com/tasks" \
     -H "X-API-Key: {your_api_key}"
```

This is the push based API.
We also gladly can pull data from your system over an API.

If you want us to pull, we prefer over HTTPS. Just supply us with an API key.

Sample request:

```bash theme={null}
curl -X GET "{url}" \
     -H "X-API-Key: {your_api_key}"
```
