Skill
List
Skill
List
GET
/
skill
/
list
import autotab
from autotab.rest import ApiException
client = autotab.Client(
autotab.Configuration(
api_key = os.environ["AUTOTAB_API_KEY"]
)
)
try:
skills = await autotab.SkillApi(client).list()
print(f"skills: {"\n".join([skill.model_dump_json(indent=2) for skill in skills])}")
except ApiException as e:
print(f"Exception: {e})
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"owner": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_modified_at": "2023-11-07T05:31:56Z",
"inputs": []
}
]
Authorizations
Your Autotab API key
Response
200
application/json
Successful Response
The response is of type object[]
.
import autotab
from autotab.rest import ApiException
client = autotab.Client(
autotab.Configuration(
api_key = os.environ["AUTOTAB_API_KEY"]
)
)
try:
skills = await autotab.SkillApi(client).list()
print(f"skills: {"\n".join([skill.model_dump_json(indent=2) for skill in skills])}")
except ApiException as e:
print(f"Exception: {e})
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"owner": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_modified_at": "2023-11-07T05:31:56Z",
"inputs": []
}
]