Quick Start
Start your user onboarding, test Vlens APIs
Get your API & Bundle keys
Your API requests are authenticated using API & Bundle keys. Any request that doesn't include an API key or Bundle key will return an error.
You can contact info@vlenseg.com to generate an API & bundle key at any time.
Make your first request
To make your first request, send an authenticated request to the endpoint.
curl -X 'POST' \
'https://<endpoint-url>' \
-H 'Content-Type: application/json' \
-H 'accept: text/plain' \
-H 'ApiKey: <string>' \
-H 'BundleKey: <string>' \
-d '{
"image": <base64 encoded image>,
"transaction_id": <guid>,
"client_transaction_id": <string>,
"request_id": <guid>
}'
Last updated