Easy-to-use API endpoints for quick implementation
Get instant updates and current counts
Increment by any value with our flexible API
Countify API provides a simple and effective way to manage counters for your application. Whether you're tracking views, clicks, or any other metric, our API makes it easy to get started and scale with your needs.
This API is provided as a best-effort service. While we strive to provide a reliable and high-quality experience, we cannot guarantee uptime, accuracy, or specific outcomes. Use of this service is at your own discretion, and we disclaim any liability for indirect, incidental, or consequential damages.
Retrieves the current total count for the specified ID. If the ID does not exist, it initializes it with a total of 0.
https://api.countify.xyz/get-total/testID
Increments the total count associated with the specified ID by 1. If the ID does not exist, it initializes it with a total of 1.
https://api.countify.xyz/increment/testID
Increases the total count associated with the specified ID by the value provided in the JSON body payload. If the ID does not exist, it initializes it with the specified total.
https://api.countify.xyz/increase/testID
{
"value": 69
}