Skip to main content
POST
/
api
/
vimeo
/
channels
/
search
/vimeo/channels/search
curl --request POST \
  --url https://api.anysite.io/api/vimeo/channels/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "relevance"
}
'
[
  {
    "id": "<string>",
    "@type": "VimeoChannel",
    "name": "<string>",
    "alias": "<string>",
    "description": "<string>",
    "url": "<string>",
    "image": "<string>",
    "video_count": 123,
    "follower_count": 123,
    "user": {
      "id": "<string>",
      "@type": "VimeoUser",
      "name": "<string>",
      "alias": "<string>",
      "url": "<string>",
      "bio": "<string>",
      "image": "<string>",
      "location": "<string>",
      "is_verified": false,
      "membership_type": "<string>",
      "video_count": 123,
      "follower_count": 123,
      "following_count": 123,
      "showcase_count": 123,
      "like_count": 123,
      "social_links": [],
      "created_at": 123
    },
    "created_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Example:

"staff picks"

count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:relevance

Result ordering

Available options:
relevance,
newest,
popular,
alphabetical

Response

Successful Response

id
string
required
@type
string
default:VimeoChannel
name
string | null
alias
string | null
description
string | null
url
string | null
image
string | null
video_count
integer | null
follower_count
integer | null
user
object | null
created_at
integer | null