How do I use the spam api? it's easy, you only need to create an ext python program file.
example: nano app.py
code:

import requests, json
number = input("number (8xxx): ")

api=requests.post("https://flask-production-9752.up.railway.app/api/spam",data={"nomor":number}).text

print(api)

Run:

python app.py