Skip to main content
GET
/
paylink
/
{paylinkId}
Get paylink details
curl --request GET \
  --url https://api.orafi.app/v1/paylink/{paylinkId}
{
  "success": true,
  "message": "Paylink retrieved successfully",
  "data": {
    "id": "paylink_abc123",
    "title": "Product Payment",
    "description": "Payment for awesome product",
    "amount": 100,
    "currency": "USDC",
    "imageBlobIds": [
      "<string>"
    ],
    "mode": "live",
    "profileId": "profile_123",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.orafi.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

The paylink ID

Response

Paylink details retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Paylink retrieved successfully"

data
object