CF
Live Counter
Connecting

Live total

84151

Terminal posts update the count, stats, and recent activity as they arrive.

Recent updates
Added today UTC 0
Total added 83151
API posts 135

Terminal commands

1–1000
Increment by 1
curl -X POST https://count.ctrnode.dev/api/post
Add a custom amount
curl -X POST https://count.ctrnode.dev/api/post -d "amount=50"
Send JSON body
curl -X POST https://count.ctrnode.dev/api/post -H "Content-Type: application/json" -d '{"amount":10}'
Check status (JSON)
curl https://count.ctrnode.dev/api/status
Increment by 1
Invoke-RestMethod -Method POST https://count.ctrnode.dev/api/post
Add a custom amount
Invoke-RestMethod -Method POST https://count.ctrnode.dev/api/post -Body "amount=50"
Send JSON body
Invoke-RestMethod -Method POST https://count.ctrnode.dev/api/post -ContentType "application/json" -Body '{"amount":10}'
Check status (JSON)
Invoke-RestMethod https://count.ctrnode.dev/api/status | ConvertTo-Json
Using Invoke-WebRequest
(Invoke-WebRequest -Method POST https://count.ctrnode.dev/api/post -Body "amount=5").Content
Increment by 1 (curl ships with Win 10+)
curl -X POST https://count.ctrnode.dev/api/post
Add a custom amount
curl -X POST https://count.ctrnode.dev/api/post -d "amount=50"
Send JSON body
curl -X POST https://count.ctrnode.dev/api/post -H "Content-Type: application/json" -d "{"amount":10}"
Check status (JSON)
curl https://count.ctrnode.dev/api/status
Increment by 1
wget -qO- --method=POST https://count.ctrnode.dev/api/post
Add a custom amount
wget -qO- --method=POST --body-data="amount=50" https://count.ctrnode.dev/api/post
Check status (JSON)
wget -qO- https://count.ctrnode.dev/api/status
Increment by 1
http POST https://count.ctrnode.dev/api/post
Add a custom amount (form)
http --form POST https://count.ctrnode.dev/api/post amount=50
Send JSON body
http POST https://count.ctrnode.dev/api/post amount:=10
Check status
http GET https://count.ctrnode.dev/api/status
Increment by 1 (urllib, stdlib)
python -c "import urllib.request; urllib.request.urlopen(urllib.request.Request('https://count.ctrnode.dev/api/post', method='POST'))"
Add a custom amount (requests)
python -c "import requests; r=requests.post('https://count.ctrnode.dev/api/post', data={'amount':50}); print(r.text)"
Send JSON body (requests)
python -c "import requests; r=requests.post('https://count.ctrnode.dev/api/post', json={'amount':10}); print(r.text)"
Check status
python -c "import urllib.request,json; print(json.dumps(json.load(urllib.request.urlopen('https://count.ctrnode.dev/api/status')),indent=2))"

Recent activity

No posts yet

    API rules

    • Browsers can read the counter, but cannot post updates.
    • Each post can add a whole number from 1 to 1000.
    • Form data, query strings, JSON, and plain text bodies are accepted.
    • Live status is available from /api/status.