Webseiten

GET https://userlyze.com/api/websites/
curl --request GET \
--url 'https://userlyze.com/api/websites/' \
--header 'Authorization: Bearer {api_key}' \
Parameter Einzelheiten Beschreibung
page Optional Ganzzahl Die Seitenzahl, von der du Ergebnisse haben möchtest. Standardmäßig auf 1 gesetzt.
results_per_page Optional Ganzzahl Wie viele Ergebnisse möchtest du pro Seite? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standardmäßig ist es 25.
{ "data": [ { "id": 1, "pixel_key": "1234567890123456", "name": "Localhost", "scheme": "https://", "host": "example.com", "path": "/", "tracking_type": "normal", "excluded_ips": "", "events_children_is_enabled": false, "sessions_replays_is_enabled": false, "email_reports_is_enabled": false, "email_reports_last_date": "2020-06-23 19:01:22", "bot_exclusion_is_enabled": true, "query_parameters_tracking_is_enabled": true, "ip_storage_is_enabled": false, "public_statistics_is_enabled": false, "public_statistics_password": false, "is_enabled": true, "datetime": "2025-06-01 01:12:08" "last_datetime": null }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://userlyze.com/api/websites?&page=1", "last": "https://userlyze.com/api/websites?&page=1", "next": null, "prev": null, "self": "https://userlyze.com/api/websites?&page=1" } }
GET https://userlyze.com/api/websites/{website_id}
curl --request GET \
--url 'https://userlyze.com/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "pixel_key": "1234567890123456", "name": "Localhost", "scheme": "https://", "host": "example.com", "path": "/", "tracking_type": "normal", "excluded_ips": "", "events_children_is_enabled": false, "sessions_replays_is_enabled": false, "email_reports_is_enabled": false, "email_reports_last_date": "2020-06-23 19:01:22", "bot_exclusion_is_enabled": true, "query_parameters_tracking_is_enabled": true, "ip_storage_is_enabled": false, "public_statistics_is_enabled": false, "public_statistics_password": false, "is_enabled": true, "datetime": "2025-06-01 01:12:08" "last_datetime": null } }
POST https://userlyze.com/api/websites
Parameter Einzelheiten Beschreibung
name Erforderlich String -
scheme Optional String Erlaubte Werte: http://, https://
host Erforderlich String Beispiel: example.com/path.
tracking_type Optional String Erlaubte Werte: lightweight, normal
excluded_ips Optional String IP-Adressen vom Tracking ausschließen. Gib kommagetrennte Werte ein.
events_children_is_enabled Optional Boolean Verfolge Besucherereignisse (Mausklicks, Größenänderungen, Scrollen, Formularübermittlungen). Erlaubte Werte sind: 0 oder 1. Nur verfügbar für normal Tracking-Typ.
sessions_replays_is_enabled Optional Boolean Sitzungswiederholungen. Erlaubte Werte sind: 0 oder 1. Nur verfügbar für normal Tracking-Typ.
email_reports_is_enabled Optional Boolean E-Mail-Berichte. Erlaubte Werte sind: 0 oder 1.
query_parameters_tracking_is_enabled Optional Boolean -
bot_exclusion_is_enabled Optional Boolean -
public_statistics_is_enabled Optional Boolean -
public_statistics_password Optional String -
is_enabled Optional Boolean -
curl --request POST \
--url 'https://userlyze.com/api/websites' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=website.com' \
--form 'name=Example' \
{ "data": { "id": 1 } }
POST https://userlyze.com/api/websites/{website_id}
Parameter Einzelheiten Beschreibung
name Optional String -
scheme Optional String Erlaubte Werte: http://, https://
host Optional String Beispiel: example.com/path.
excluded_ips Optional String IP-Adressen vom Tracking ausschließen. Gib kommagetrennte Werte ein.
events_children_is_enabled Optional Boolean Verfolge Besucherereignisse (Mausklicks, Größenänderungen, Scrollen, Formularübermittlungen). Erlaubte Werte sind: 0 oder 1. Nur verfügbar für normal Tracking-Typ.
sessions_replays_is_enabled Optional Boolean Sitzungswiederholungen. Erlaubte Werte sind: 0 oder 1. Nur verfügbar für normal Tracking-Typ.
email_reports_is_enabled Optional Boolean E-Mail-Berichte. Erlaubte Werte sind: 0 oder 1.
query_parameters_tracking_is_enabled Optional Boolean -
bot_exclusion_is_enabled Optional Boolean -
public_statistics_is_enabled Optional Boolean -
public_statistics_password Optional String -
is_enabled Optional Boolean -
curl --request POST \
--url 'https://userlyze.com/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'is_enabled=0' \
{ "data": { "id": 1 } }
DELETE https://userlyze.com/api/websites/{website_id}
curl --request DELETE \
--url 'https://userlyze.com/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \