Another counting API

A simple API for managing counters

See API Docs

Features

📈

Simple Integration

Easy-to-use API endpoints for quick implementation

Real-time Updates

Get instant updates and current counts

🎛️

Customizable

Increment by any value with our flexible API

📊About Countify 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.

💪Best-Effort Service

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.

API Documentation

GET

/get-total/{id}

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
POST

/increment/{id}

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
POST

/increase/{id}

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
Example request body
{
  "value": 69
}