---
title: "List Search Tools"
method: GET
path: "/v1/search/tools"
tags: ["search"]
---

# List Search Tools

`GET /v1/search/tools`

List all available search tools configured in the router.

This endpoint returns the search tools that are currently loaded and available
for use with the /v1/search endpoint.

Example:
```bash
curl -X GET "http://localhost:4000/v1/search/tools"         -H "Authorization: Bearer sk-1234"
```

Response:
```json
{
    "object": "list",
    "data": [
        {
            "search_tool_name": "litellm-search",
            "search_provider": "perplexity",
            "description": "Perplexity search tool"
        }
    ]
}
```

## Response `200`

Successful Response

- unknown

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
