Branta
  • Branta API
    • Start Here
  • Guardrail
    • Authentication
    • Environments
    • Name, Image and Block Height
    • V1
      • Adding Payments
      • Displaying Payments
      • Getting Payments
      • Indexing Payments
    • Guardrail+
  • More
    • API Status
    • Key Rotation
  • BTCPayServer Plugin
Powered by GitBook
On this page
  1. Guardrail
  2. V1

Getting Payments

HTTP GET to query invoices or checkouts from Branta.

PreviousDisplaying PaymentsNextIndexing Payments

Last updated 11 days ago

Get a payment

get

Get details of a payment by address.

Path parameters
payment_stringstringRequired

The unique identifier string of the payment.

Responses
200
Payment details retrieved successfully.
application/json
404
Payment not found.
get
GET /v1/payments/{payment_string} HTTP/1.1
Host: staging.branta.pro
Accept: */*
{
  "payment": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
  "created_at": "2024-09-02T12:34:56Z",
  "platform": "Example Platform",
  "ttl": 86400
}