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

# Connector APIs

<Badge icon="arrow-left" color="gray">[Back to API List](/ai-for-service/apis/searchai/api-list)</Badge>

## Get Connectors

This API returns the list of connectors configured for an application, including basic details like name, type, record count, and more.

| Field             | Value                                         |
| ----------------- | --------------------------------------------- |
| **Method**        | GET                                           |
| **Endpoint**      | `<host_url>/api/public/bot/:botId/connectors` |
| **Content-Type**  | `application/json`                            |
| **Authorization** | `auth: <JWT Token>`                           |
| **API Scope**     | Permission Entity                             |

## Query Parameters

| Parameter | Description                                                         | Mandatory |
| --------- | ------------------------------------------------------------------- | --------- |
| Bot ID    | Provide your application ID here.                                   | Yes       |
| `skip`    | Number of records to skip from the beginning (used for pagination). | No        |
| `limit`   | Number of records to fetch in a single call (used for pagination).  | No        |

## Sample Response

```json theme={null}
{
  "connectors": [
    {
      "_id": "fcon-73d16e4a-282a-5c41-9ca7-8aec4dd04c63",
      "name": "myConnector",
      "type": "json",
      "createdBy": "john.doe@example.com",
      "isActive": true,
      "sourceId": "fs-cf813bb4-xxxxxxxx-bf25-604c528f9782",
      "resourceid": "findlyConnectors",
      "recordsCount": 1,
      "size": 1
    }
  ],
  "hasMore": false
}
```
