Skip to main content
GET
/
tools
/
specs
List tool specifications
curl --request GET \
  --url https://api.poligono.ai/v1/tools/specs \
  --header 'Authorization: <api-key>'
{
  "data": {
    "items": [
      {
        "description": "<string>",
        "formatted_schema": {},
        "fully_qualified_name": "<string>",
        "input": {
          "parameters": [
            {
              "description": "<string>",
              "inferrable": true,
              "name": "<string>",
              "required": true,
              "value_schema": {
                "enum": [
                  "<string>"
                ],
                "inner_val_type": "<string>",
                "val_type": "<string>"
              }
            }
          ]
        },
        "name": "<string>",
        "output": {
          "available_modes": [
            "<string>"
          ],
          "description": "<string>",
          "value_schema": {
            "enum": [
              "<string>"
            ],
            "inner_val_type": "<string>",
            "val_type": "<string>"
          }
        },
        "qualified_name": "<string>",
        "requirements": {
          "authorization": {
            "id": "<string>",
            "oauth2": {
              "scopes": [
                "<string>"
              ]
            },
            "provider_id": "<string>",
            "provider_type": "<string>",
            "status": "<string>",
            "status_reason": "<string>",
            "token_status": "<string>"
          },
          "met": true,
          "secrets": [
            {
              "key": "<string>",
              "met": true,
              "status_reason": "<string>"
            }
          ]
        },
        "toolkit": {
          "description": "<string>",
          "name": "<string>",
          "version": "<string>"
        }
      }
    ],
    "offset": 123,
    "total_count": 123
  }
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Response

200 - application/json

OK

data
object