API v2 · Account
Features
Return the public API feature catalog available to the authenticated user.
GET
/api/v2/featuresAuthentication
Send your API key as a bearer token on every request.
Header
Authorization: Bearer vba_your_api_keyResponse
Successful responses use JSON. Video feature endpoints return an async job_id rather than the final processed video immediately.
| Field | Type | Required | Description |
|---|---|---|---|
| success | boolean | Yes | True when the request succeeded. |
| features | array | Yes | Available public API feature catalog. |
JSON
{
"success": true,
"features": [
{
"id": "video.face_blur",
"name": "Video Face Blur"
}
]
}Example
curl
curl -X GET https://www.bgblur.com/api/v2/features \
-H "Authorization: Bearer vba_your_api_key"