List Actions
curl --request GET \
--url https://api.arg.ai/api/actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.arg.ai/api/actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.arg.ai/api/actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Actions
List Actions
List the Action catalog: typed capabilities such as media generation, integration calls, and data lookups that agents and apps invoke by id.
GET
/
api
/
actions
List Actions
curl --request GET \
--url https://api.arg.ai/api/actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.arg.ai/api/actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.arg.ai/api/actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Authorizations
bearerAuthapiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by category.
Filter by runtime.
Available options:
local, cloud Filter by backend.
Filter integration Actions by provider id.
Free-text filter over id, name and description.
Set to 1 to include input and output schemas.
Response
Successful response
The response is of type object.