Authentication and first call
Send your API key and make your first request.
export VIDECOOT_API_KEY="vdc_live_..." # from your secret store
curl https://sit-api.videcoot.com/api/integration/v1/me \
-H "Authorization: Bearer $VIDECOOT_API_KEY"{
"data": {
"organization": { "id": "66f3a1c2e4b0a1d2c3e4f501", "name": "Acme Recruiting" },
"apiKey": { "id": "66f3a1c2e4b0a1d2c3e4f502", "name": "HR system", "prefix": "vdc_live_7kQ2" }
},
"timestamp": 1790330400000
}The header must be exactly Authorization: Bearer <key>.
Postman: import postman/videcoot-integration-api.postman_collection.json and an environment (postman/sit.postman_environment.json), then set apiKey. Run the folders in order: each request saves the IDs the next one needs, and every request has tests. The collection uses no credits.