Developers
API Reference
Build integrations with your ERP, payroll, or custom tooling using the REST API. Available on Growth and Scale plans.
Base URL
https://api.yeydigital.eu/api/v1Authentication
Authorization: Bearer <API_KEY>API access is available on Growth and Scale plans
To get your API key, go to Settings → API in your Yey account, or contact support.
Workers
GET
/api/v1/workersPOST
/api/v1/workersGET
/api/v1/workers/:idPATCH
/api/v1/workers/:idDELETE
/api/v1/workers/:idSites
GET
/api/v1/sitesPOST
/api/v1/sitesGET
/api/v1/sites/:idPOST
/api/v1/sites/:id/workersAttendance
GET
/api/v1/attendancePOST
/api/v1/attendance/checkinPOST
/api/v1/attendance/checkoutDocuments
GET
/api/v1/documentsPOST
/api/v1/documents/uploadDELETE
/api/v1/documents/:idExample request
curl -X GET https://api.yeydigital.eu/api/v1/workers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
# Response
{
"data": [
{
"id": "wkr_01abc...",
"name": "João Silva",
"nationality": "PT",
"status": "active",
"currentSiteId": "site_01xyz...",
"documentsExpiringSoon": 1
}
],
"total": 47,
"page": 1,
"limit": 20
}Request API access
Available on Growth and Scale plans