Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request GET \
--url https://open.beatpass.ca/api/v1/users/search \
--header 'Authorization: Bearer <token>'{
"status": "success",
"users": [
{
"id": 123,
"display_name": "<string>",
"avatar": "<string>"
}
]
}curl --request GET \
--url https://open.beatpass.ca/api/v1/users/search \
--header 'Authorization: Bearer <token>'{
"status": "success",
"users": [
{
"id": 123,
"display_name": "<string>",
"avatar": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Search query
"john"
Maximum number of results
10
Was this page helpful?