Skip to main content
GET
/
youtube
/
search
YouTube Search
curl --request GET \
  --url https://api.aisa.one/apis/v1/youtube/search \
  --header 'Authorization: Bearer <token>'
{
  "search_metadata": {},
  "search_results": [
    {
      "video_id": "<string>",
      "title": "<string>",
      "link": "<string>",
      "channel_name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

engine
enum<string>
required

Engine identifier for YouTube Search

Available options:
youtube
q
string
required

Search query

sp
string

YouTube filter token (pagination or advanced filters)

gl
string

Country code (e.g. us, jp)

hl
string

Interface language

Response

Successful YouTube search response

YouTube search result payload

search_metadata
object

Search metadata

search_results
object[]