API v2 · Account

Contact

Features

Return the public API feature catalog available to the authenticated user.

GET/api/v2/features

Authentication

Send your API key as a bearer token on every request.

Header
Authorization: Bearer vba_your_api_key

Response

Successful responses use JSON. Video feature endpoints return an async job_id rather than the final processed video immediately.

FieldTypeRequiredDescription
successbooleanYesTrue when the request succeeded.
featuresarrayYesAvailable 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"
Back to API Reference