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
http://myanalytics.dev/api/v1/websites

Request example:

curl --location --request GET 'http://myanalytics.dev/api/v1/websites' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Description
search
optional string
The search query.
sort
optional string
Sort. Possible values are: desc for Z-A, asc for A-Z.
Show

API endpoint:

GET
http://myanalytics.dev/api/v1/websites/{id}

Request example:

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

API endpoint:

POST
http://myanalytics.dev/api/v1/websites

Request example:

curl --location --request POST 'http://myanalytics.dev/api/v1/websites' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Parameter
Type
Description
url
required string
The website's URL.
password
optional string
The password for the statistics page. Only works with privacy set to 2.
privacy
optional integer
Stats page privacy. Possible values are: 0 for Public, 1 for Private, 2 for Password.
email
optional integer
Periodic email reports. Possible values are: 0 for Disabled, 1 for Enabled.
exclude_bots
optional integer
Exclude common bots from being tracked. Possible values are: 0 for Disabled, 1 for Enabled.
exclude_ips
optional string
Exclude IPs from being tracked. One per line.
Update

API endpoint:

PUT PATCH
http://myanalytics.dev/api/v1/websites/{id}

Request example:

curl --location --request PUT 'http://myanalytics.dev/api/v1/websites/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Parameter
Type
Description
password
optional string
The password for the statistics page. Only works with privacy set to 2.
privacy
optional integer
Stats page privacy. Possible values are: 0 for Public, 1 for Private, 2 for Password.
email
optional integer
Periodic email reports. Possible values are: 0 for Disabled, 1 for Enabled.
exclude_bots
optional integer
Exclude common bots from being tracked. Possible values are: 0 for Disabled, 1 for Enabled.
exclude_ips
optional string
Exclude IPs from being tracked. One per line.
Delete

API endpoint:

DELETE
http://myanalytics.dev/api/v1/websites/{id}

Request example:

curl --location --request DELETE 'http://myanalytics.dev/api/v1/websites/{id}' \
--header 'Authorization: Bearer {api_key}'