1Reg Docs
APIWebhook
APIWebhook
  1. payments
  • 📝 How to start?
  • Account
    • payments
      • Payments history
        GET
    • Account details
      GET
  • Domains
    • DNS
      • Bulk get dns records
      • Get dns records
      • Bulk update dns
    • Domains list
    • Bulk query domains
    • Register Domain
APIWebhook
APIWebhook
  1. payments

Payments history

Developing
Prod Env
https://api.onereg.org/v1
Prod Env
https://api.onereg.org/v1
GET
/account/payments
Last modified:2025-11-09 10:42:40

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.onereg.org/v1/account/payments?page=1&size=10&sort=ASC&payment_id' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "status": true,
    "result": {
        "data": [
            {
                "payment_id": "5317982494_678k03ml",
                "method": "cryptomus",
                "amount": 5,
                "currency": "USD",
                "status": "paid",
                "date": "2025-03-31T17:08:31.000Z"
            }
        ],
        "size": 10,
        "current_page": 1,
        "previous_page": null,
        "items": 10,
        "total_items": 13
    }
}
Modified at 2025-11-09 10:42:40
Previous
📝 How to start?
Next
Account details
Built with