API Documentation
Everything you need to know to integrate Blurit API Calls
Authenticate to the API using your client credentials. Returns a token needed for all other routes.
Client Id available in the Developer Account section
client_123456789Secret ID available in the Developer Account section
secret_987654321Successfully authenticated
Bad Request - Invalid parameters
Invalid credentials
Refresh an expired access token using the refresh token. The Bearer token can be expired.
JWT token needed for all other routes. The token acquired with the login route.
Refresh token received from login
rt_eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...Token successfully refreshed
Bad Request - Invalid parameters
Unauthorized - Invalid token
Forbidden - Insufficient permissions
Check the status of an anonymization job.
JWT token needed for all other routes. The token acquired with the login route.
Job ID received from POST request
client_uuid-SRV_ANONYMIZATION-abc123def456Job status
Bad Request - Invalid job ID
Unauthorized - Invalid token
Forbidden - Insufficient permissions
This route will create a job for anonymizing faces and/or license plates in images or videos. The process is asynchronous and will return a job ID that can be used to check the status.
Note: For a basic request, only the input_media field is required. All other form fields should be disabled in the test interface.
JWT token needed for all other routes. The token acquired with the login route.
Image or video file to process. Accepted formats are JPEG, JPG, PNG, WEBP, BMP, TIFF, MP4, AVI, MOV, MKV, ZIP.
Enable face detection and blurring
trueEnable license plate detection and blurring
trueReturn URLs to download detection coordinates in JSON format
trueJob successfully created
Bad Request - Invalid parameters
Unauthorized - Invalid token
Payment Required
Forbidden - Insufficient permissions
Payload Too Large
Download result file from BlurIt anonymization service.
JWT token needed for all other routes. The token acquired with the login route.
File name received in output_media
b83603c4-b9c7-4e86-9fe4-a2eeba2dfa06.jpegFile content
Bad Request - Invalid filename
Unauthorized - Invalid token
Forbidden - Insufficient permissions
Last updated