Daily analytics ping
POST
/v1/analytics/ping
const url = 'https://api.extport.dev/api/v1/analytics/ping';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"installId":"example","extensionId":"example","version":"example","language":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.extport.dev/api/v1/analytics/ping \ --header 'Content-Type: application/json' \ --data '{ "installId": "example", "extensionId": "example", "version": "example", "language": "example" }'The only analytics event. At most one counts per install per UTC day (the server ignores extras). Browser/OS derive from the User-Agent, country from the request — the payload deliberately carries no more than this.
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
installId
required
string
extensionId
required
string
version
required
string
language
string
Examplegenerated
{ "installId": "example", "extensionId": "example", "version": "example", "language": "example"}Responses
Section titled “Responses”Accepted (or ignored — the response never distinguishes)