Payment History
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/account/payments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/account/payments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.omnixapi.com/api/v1/twitter/account/payments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"payments": [
{
"amount": 10,
"credits_added": 10,
"status": "succeeded",
"created_at": "2026-03-18T00:17:02.346Z"
}
]
},
"error": null
}Account
Payment History
Your payment / top-up history, newest first. Free — no credits are deducted — and no X account token is required.
GET
/
account
/
payments
Payment History
curl --request GET \
--url https://api.omnixapi.com/api/v1/twitter/account/payments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.omnixapi.com/api/v1/twitter/account/payments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.omnixapi.com/api/v1/twitter/account/payments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"payments": [
{
"amount": 10,
"credits_added": 10,
"status": "succeeded",
"created_at": "2026-03-18T00:17:02.346Z"
}
]
},
"error": null
}