GET
/
v1
/
available-actions
/
{platform}
curl --location --request GET 'https://api.picaos.com/v1/available-actions/exa' \
--header 'x-pica-secret: YOUR_API_KEY'
{
    "type": "Available Actions",
    "rows": [
        {
            "title": "Get Contents",
            "key": "getContents",
            "method": "POST",
            "platform": "exa"
        },
        {
            "title": "Search",
            "key": "search",
            "method": "POST",
            "platform": "exa"
        },
        {
            "title": "Find Similar Links",
            "key": "findSimilarLinks",
            "method": "POST",
            "platform": "exa"
        },
        {
            "title": "Get LLM Answer",
            "key": "getLlmAnswer",
            "method": "POST",
            "platform": "exa"
        }
    ],
    "total": 4,
    "skip": 0,
    "limit": 20
}

Path Parameters

platform
string
required

The connector platform

Query Parameters

title
string

The action title

key
string

The action key

method
string

The action method

limit
number
default:"20"

The number of actions to return

skip
number
default:"0"

The number of actions to skip

Response

actions
Action[]

Array of Actions

curl --location --request GET 'https://api.picaos.com/v1/available-actions/exa' \
--header 'x-pica-secret: YOUR_API_KEY'
{
    "type": "Available Actions",
    "rows": [
        {
            "title": "Get Contents",
            "key": "getContents",
            "method": "POST",
            "platform": "exa"
        },
        {
            "title": "Search",
            "key": "search",
            "method": "POST",
            "platform": "exa"
        },
        {
            "title": "Find Similar Links",
            "key": "findSimilarLinks",
            "method": "POST",
            "platform": "exa"
        },
        {
            "title": "Get LLM Answer",
            "key": "getLlmAnswer",
            "method": "POST",
            "platform": "exa"
        }
    ],
    "total": 4,
    "skip": 0,
    "limit": 20
}