Websites

Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Get your API key.
List

API endpoint:

GET
https://anapo.app/api/v1/websites

Request example:

curl --location --request GET 'https://anapo.app/api/v1/websites' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Beschreibung
search
optional string
The search query.
search_by
optional string
Suche nach. Possible values are: domain for Domain. Defaults to: domain.
sort_by
optional string
Sort by. Possible values are: id for Date created, domain for Domain. Defaults to: id.
sort
optional string
Sortieren. Possible values are: desc for Descending, asc for Ascending. Defaults to: desc.
per_page
optional int
Ergebnisse pro Seite. Possible values are: 10, 25, 50, 100. Defaults to: 25.
Show

API endpoint:

GET
https://anapo.app/api/v1/websites/{id}

Request example:

curl --location --request GET 'https://anapo.app/api/v1/websites/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Store

API endpoint:

POST
https://anapo.app/api/v1/websites

Request example:

curl --location --request POST 'https://anapo.app/api/v1/websites' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'domain={domain}'
Parameter
Type
Beschreibung
domain
required string
The domain name.
privacy
optional integer
Stats page privacy. Possible values are: 0 for Öffentlich, 1 for Privat, 2 for Passwort. Defaults to: 1.
password
optional string
The password for the statistics page. Only works with privacy set to 2.
email
optional integer
Periodic email reports. Possible values are: 0 for Deaktiv, 1 for Aktiviert. Defaults to: 0.
exclude_bots
optional integer
Exclude common bots from being tracked. Possible values are: 0 for Deaktiv, 1 for Aktiviert. Defaults to: 1.
exclude_params
optional string
Exclude URL query parameters from being tracked. Eine pro Zeile..
exclude_ips
optional string
Exclude IPs from being tracked. Eine pro Zeile..
Update

API endpoint:

PUT PATCH
https://anapo.app/api/v1/websites/{id}

Request example:

curl --location --request PUT 'https://anapo.app/api/v1/websites/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Beschreibung
privacy
optional integer
Stats page privacy. Possible values are: 0 for Öffentlich, 1 for Privat, 2 for Passwort.
password
optional string
The password for the statistics page. Only works with privacy set to 2.
email
optional integer
Periodic email reports. Possible values are: 0 for Deaktiv, 1 for Aktiviert.
exclude_bots
optional integer
Exclude common bots from being tracked. Possible values are: 0 for Deaktiv, 1 for Aktiviert.
exclude_params
optional string
Exclude URL query parameters from being tracked. Eine pro Zeile..
exclude_ips
optional string
Exclude IPs from being tracked. Eine pro Zeile..
Löschen

API endpoint:

DELETE
https://anapo.app/api/v1/websites/{id}

Request example:

curl --location --request DELETE 'https://anapo.app/api/v1/websites/{id}' \
--header 'Authorization: Bearer {api_key}'