Skip to main content
Searches the KonbiniAPI endpoint catalogue by platform and keyword. Returns matching endpoints with their IDs, paths, descriptions, and parameters. Use this first to find the endpoint_id before calling call_endpoint.

Parameters

ParameterTypeRequiredDescription
platformtiktok | instagramNoFilter to a specific platform.
querystringNoKeyword matched against endpoint ID, path, and description.
At least one of platform or query should be provided.

Example

{
  "name": "search_endpoints",
  "arguments": {
    "platform": "tiktok",
    "query": "videos"
  }
}

Response

[
  {
    "id": "tiktokGetUserVideos",
    "platform": "tiktok",
    "method": "GET",
    "path": "/v1/tiktok/users/{username}/videos",
    "description": "Get a paginated list of videos posted by a TikTok user.",
    "params": {
      "path": [{ "name": "username", "required": true }],
      "query": [
        { "name": "count", "required": false, "default": "30" },
        { "name": "cursor", "required": false }
      ]
    }
  }
]