v1

latestOpenAPI 3.1.02026-07-2658119246.0 KB
Public API

List Agent Templates

List the pre-built agent templates available to your account. Use a template's template_name with POST /v2/agents to create an agent instance from it.

get/v2/agents/templates

Query parameters

offsetinteger

Number of items to skip before this page.

limitinteger

Maximum number of items to return (1-200).

Response

Successful Response

limitinteger required

Maximum number of items returned.

offsetinteger required

Number of items skipped before this page.

totalinteger required

Total number of items matching the query.

Example response

{
  "items": [
    {
      "id": "wsat_7d1e4f7a-9f3c-4a7b-b0d0-1c2c3d4e5f60",
      "sources": [
        {
          "domains": [
            "linkedin.com",
            "crunchbase.com"
          ],
          "title": "Professional networks"
        }
      ],
      "template_name": "linkedin_company_profiles"
    }
  ]
}