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

# 📡 List Connected Providers

> Fetch a list of providers connected to your business on Recital.

Returns a list of providers currently connected to your business via API integrations on Recital.

This endpoint helps you:

* Display provider options to users
* Show linked `connectIDs` in UI

```bash Request theme={null}
curl --location --request GET 'https://api.recital.finance/api/v1/providers \
--header 'Authorization: Bearer apiKey'
```

```json Response theme={null}
{
  "success": true,
  "message": "Data retrieved successfully.",
  "data": [
    {
      "providerId": "0001",
      "providerName": "Flutterwave",
      "providerLogo": "https://prov-logos.s3.eu-central-1.amazonaws.com/fluter.png",
      "providerType": "Payment API",
      "connectID": "HnwiseDy8HB2GOV"
    }
  ]
}

```
