This guide will help you generate and use your Vicilook API Key to connect to the Vicilook platform from your website, mobile app, or other tools.
An API Key is like a password that lets your app or system securely talk to Vicilook’s API. It helps Vicilook know who you are and what data you’re allowed to access.
Please log in to generate an API key.
You’ll use the key when sending requests to Vicilook’s API.
GET https://api.vicilook.com/api/v1/visits/123
Authorization: Bearer YOUR_API_KEY_HERE
fetch('https://api.vicilook.com/api/v1/visits/123', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY_HERE'
}
})
.then(res => res.json())
.then(data => console.log(data));
curl -H "Authorization: Bearer YOUR_API_KEY_HERE" \\
https://api.vicilook.com/api/v1/visits/123
For support, contact us:
api@vicilook.com