curl --request GET \
--url http://localhost:8787/v1/streamer/search \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"display_name": "<string>",
"profile_image": "<string>",
"followers": 123,
"description": "<string>"
}
]Fuzzy search streamers by username or display name ordered by follower count.
curl --request GET \
--url http://localhost:8787/v1/streamer/search \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"display_name": "<string>",
"profile_image": "<string>",
"followers": 123,
"description": "<string>"
}
]Optional bearer token enforced when the Worker is configured with an API token.
Search phrase. Empty defaults to all streamers.
Maximum number of results to return.
1 <= x <= 100