List Users
GET {{baseUrl}}/v1/youtube/users?limit=<number>&query=<string>
Search the list of influencers.
Body
PARAM
Key | Datatype | Required | Description |
limit
|
string | Max items to get | |
query
|
string | String to search by |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"users": [
{
"userId": "<string>",
"username": "<string>",
"fullname": "<string>",
"picture": "<string>",
"followers": "<number>",
"isVerified": "<boolean>",
"handle": "<string>"
},
{
"userId": "<string>",
"username": "<string>",
"fullname": "<string>",
"picture": "<string>",
"followers": "<number>",
"isVerified": "<boolean>",
"handle": "<string>"
}
],
"error": "<boolean>"
} |
ENDPOINTS