TwitterAPIs Docs
API ReferenceAccount

Account: Payments

Return the authenticated account's payment ledger: credit purchases and the running balance. This call is free and does not consume credits. Cost: Free per call.

GET
/account/payments

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

cursor?string

Pagination cursor for long ledgers.

Response Body

application/json

curl -X GET "https://example.com/account/payments"
{  "payments": [    {      "id": "pay_8841",      "amount": "10.00",      "type": "credit_purchase",      "created_at": "2026-02-18T12:04:00Z"    },    {      "id": "signup_credit",      "amount": "0.50",      "type": "free_signup_credit",      "created_at": "2026-02-01T09:00:00Z"    }  ],  "has_next_page": false,  "next_cursor": "",  "status": "success"}