User authentication and session management for B2B integrations
- Get data on revenue by day
Get key location metrics
Get occupancy data by day
Get the Structure of Appointments by Source
Get the Structure of Appointments by Visit Status
Get Data on the Number of Appointments by Day
Get revenue statistics
Get team member return
Get customer statistics
Get day-end report data
Get data on revenue by da...
Business Management (1.0.0)
Full-featured B2B API for business operations.
Base URL: https://api.alteg.io/api
V1 will be gradually deprecated. We recommend using V2 API for new integrations. V1 endpoints are maintained for backward compatibility, but new features will be released in V2 only.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/b2b-v1/openapi/
Production
https://api.alteg.io/api/v1/
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/analytics/overall/charts/fullness_daily
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/analytics/overall/charts/fullness_daily
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/analytics/overall/charts/fullness_daily?date_from=2019-08-24&date_to=2019-08-24&team_member_id=0&user_id=0' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>'Occupancy by day
Data for each day. Each day is an array of two numbers. The first number is the timestamp of the beginning of the day in the UTC zone, the second number is the value of the indicator on that day.
Example: [["2026-09-21T23:00:00.000-05:00",1000],["2026-09-21T23:00:00.000-05:00",500]]
Response
application/json
[ { "label": "Working day occupancy, %", "data": [ … ] } ]
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/analytics/overall/charts/income_daily
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/analytics/overall/charts/income_daily
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/analytics/overall/charts/income_daily?date_from=2019-08-24&date_to=2019-08-24&team_member_id=0&position_id=0&user_id=0' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>'Revenue by day
Data for each day. Each day is an array of two numbers. The first number is the timestamp of the beginning of the day in the UTC zone, the second number is the value of the indicator on that day.
Example: [["2026-09-21T23:00:00.000-05:00",1000],["2026-09-21T23:00:00.000-05:00",500]]
Response
application/json
[ { "label": "Revenue", "data": [ … ] } ]
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/analytics/overall/charts/record_source
- Productionhttps://api.alteg.io/api/v1/company/{location_id}/analytics/overall/charts/record_source
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/company/{location_id}/analytics/overall/charts/record_source?date_from=2019-08-24&date_to=2019-08-24&team_member_id=0&user_id=0' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}, User {UserToken}_HERE>'Response
application/json
[ { "label": "Administrator", "data": 10 }, { "label": "Widget", "data": 30 } ]