GET
/
v1
/
available-connectors
curl --location --request GET 'https://api.picaos.com/v1/available-connectors' \
--header 'x-pica-secret: YOUR_API_KEY'
{
    "type": "Available Connectors",
    "rows": [
        {
            "id": 62,
            "name": "ElevenLabs", 
            "key": "api::elevenlabs::v1",
            "platform": "elevenlabs",
            "platformVersion": "v1",
            "status": "generally_available",
            "description": "ElevenLabs develops advanced text-to-speech and voice synthesis technologies. It allows users to generate natural, expressive AI voices for content creation, accessibility, and conversational AI.",
            "category": "AI",
            "image": "https://assets.picaos.com/connectors/elevenlabs.svg",
            "tags": [
              "ai"
            ],
            "oauth": false,
            "tools": 104,
            "version": "1.0.0",
            "active": true
        },
        ...
    ],
    "total": 142,
    "pages": 8,
    "page": 1
}

Query Parameters

platform
string
The connector platform
authkit
boolean
default:"false"
If true, filter connectors that are enabled in Authkit
key
string
The connector key
name
string
The connector name
category
string
The connector category
limit
number
default:"20"
The number of connectors to return
page
number
default:"1"
The page number

Response

connectors
Connector[]
Array of Connectors
curl --location --request GET 'https://api.picaos.com/v1/available-connectors' \
--header 'x-pica-secret: YOUR_API_KEY'
{
    "type": "Available Connectors",
    "rows": [
        {
            "id": 62,
            "name": "ElevenLabs", 
            "key": "api::elevenlabs::v1",
            "platform": "elevenlabs",
            "platformVersion": "v1",
            "status": "generally_available",
            "description": "ElevenLabs develops advanced text-to-speech and voice synthesis technologies. It allows users to generate natural, expressive AI voices for content creation, accessibility, and conversational AI.",
            "category": "AI",
            "image": "https://assets.picaos.com/connectors/elevenlabs.svg",
            "tags": [
              "ai"
            ],
            "oauth": false,
            "tools": 104,
            "version": "1.0.0",
            "active": true
        },
        ...
    ],
    "total": 142,
    "pages": 8,
    "page": 1
}