Indexing Payments

HTTP GET to show all registered payments in Branta.

This endpoint is provided for debugging. Prints out all non-expired payments for a given API key.

Get all payments

get

Get all payments created by a given API KEY

Header parameters
AuthorizationstringRequired

Authorization is required to authorize the request. This API key is unique to each client and must be included in the header of every request. Failure to provide a valid API key will result in an unauthorized error.

Make sure to keep your API key confidential.

Responses
200
Payments retrieved successfully.
application/json
get
GET /v1/payments HTTP/1.1
Host: staging.branta.pro
Authorization: text
Accept: */*
[
  {
    "payment": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
    "created_at": "2024-09-02T12:34:56Z",
    "platform": "Example Platform",
    "ttl": 86400
  }
]

Last updated