Skip to main content
GET
/
skill
/
list
Python
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>",
    "owner": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "last_modified_at": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "inputs": []
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.autotab.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Autotab API key

Response

Successful Response

id
string
required
name
string
required
owner
string
required
created_at
string<date-time>
required
last_modified_at
string<date-time> | null
required
description
string | null
inputs
Input · object[]