API v2 · Account

Contact

Account

Validate a bearer token and return non-sensitive account fields.

GET/api/v2/me

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 token validation succeeds.
idstringYesUser ID.
namestring | nullNoAccount display name.
emailstringYesAccount email.
is_developerbooleanYesWhether the account has developer access.
available_creditsnumberYesCurrent credit balance.
JSON
{
  "success": true,
  "id": "user_123",
  "name": "Ada Lovelace",
  "email": "[email protected]",
  "is_developer": true,
  "available_credits": 500
}

Example

curl
curl -X GET https://www.bgblur.com/api/v2/me \
  -H "Authorization: Bearer vba_your_api_key"
Back to API Reference