Developer / API / Endpoints
api.vimeo.com/authenticationextras
Authentication Extras
Exchange an authorization code for an access token
POST https://api.vimeo.com/oauth/access_token Playground
| Name | Type | Required | Description |
|---|---|---|---|
| code | string | Yes |
The authorization code received from the authorization server. |
| grant_type | enum
|
Yes |
Grant type. Must be "authorization_code". |
| redirect_uri | string | Yes |
URI to redirect the user to. Must match the redirect URI from |
| HTTP Status Code | Explanation |
|---|---|
| 200 OK | |
| 400 Bad Request |
If an unsupported grant type is used. |
| 400 Bad Request |
If the given authorization code is invalid. |
| 400 Bad Request |
If the provided redirect_uri does not match the URI to create the authorization code. |
Revoke the current access token
DELETE https://api.vimeo.com/tokens Playground
| HTTP Status Code | Explanation |
|---|---|
| 204 No Content | |
| 400 Bad Request |
If you attempt this for an oAuth1 token. |
Verify an OAuth 2 token
GET https://api.vimeo.com/oauth/verify Playground
| HTTP Status Code | Explanation |
|---|---|
| 200 OK | |
| 401 Unauthorized |
If the provided token is not a valid OAuth 2 token. |
Send Feedback
Send us your feedback