GET /get-total/{id}
Example: https://api.countify.xyz/get-total/testID
Retrieves the current total count for the specified ID. If the ID does not exist, it initializes it with a total of 0.
POST /increment/{id}
Example: https://api.countify.xyz/increment/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.
POST /increase/{id}
Example: https://api.countify.xyz/increase/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.
{ "value": 50 }
countify.xyz is currently in its beta. While we strive to provide a stable and functional experience, there are no guarantees regarding the performance or reliability of the API.