Payment Links
Get One
API Documentation
Wallet Management
Address Operations
- GETGet Addresses
- POSTGenerate Address
- GETGet Address
- PATCHUpdate Address
- POSTWhitelist address
- DELUnwhitelist address
- GETGet Balance
- GETGet Balances
- GETGet transactions
- POSTWithdraw Network Fee
- POSTWithdraw
- POSTGet Swap Quote
- POSTSwap Execute
- POSTCustom Smart Contract Network Fee
- POSTCustom Smart Contract Read
- POSTCustom Smart Contract Write
Withdrawals
Custom Smart Contracts
Asset Management
Transactions
AML(Anti Money Laundering)
Auto Settlements
Asset Recovery
Payment Links
Miscellaneous
Payment Links
Get One
The GET
request retrieves information about a specific payment link identified by :id
from the Blockradar API.
GET
/
v1
/
payment_links
/
{id}
curl --request GET \
--url https://api.blockradar.co/v1/payment_links/{id} \
--header 'x-api-key: <api-key>'
{
"data": {
"active": true,
"amount": null,
"configurations": {},
"createdAt": "2025-03-04T16:28:26.740Z",
"createdChannel": "dashboard",
"currency": "USD",
"description": "Payment link description",
"id": "e0c5f043-ade7-4823-b8c0-f7dd80f683e2",
"imageUrl": null,
"inactiveMessage": "In active message",
"metadata": null,
"name": "Payment Link 10",
"network": "testnet",
"redirectUrl": null,
"slug": "QQiUffoOIo",
"successMessage": null,
"type": "payment",
"updatedAt": "2025-03-04T16:28:26.740Z",
"url": "https://pay.blockradar.co/QQiUffoOIo"
},
"message": "Payment Link fetched successfully",
"statusCode": 200
}
Authorizations
Path Parameters
Example:
"Payment_link_id"
Response
200 - application/json
200
The response is of type object
.
curl --request GET \
--url https://api.blockradar.co/v1/payment_links/{id} \
--header 'x-api-key: <api-key>'
{
"data": {
"active": true,
"amount": null,
"configurations": {},
"createdAt": "2025-03-04T16:28:26.740Z",
"createdChannel": "dashboard",
"currency": "USD",
"description": "Payment link description",
"id": "e0c5f043-ade7-4823-b8c0-f7dd80f683e2",
"imageUrl": null,
"inactiveMessage": "In active message",
"metadata": null,
"name": "Payment Link 10",
"network": "testnet",
"redirectUrl": null,
"slug": "QQiUffoOIo",
"successMessage": null,
"type": "payment",
"updatedAt": "2025-03-04T16:28:26.740Z",
"url": "https://pay.blockradar.co/QQiUffoOIo"
},
"message": "Payment Link fetched successfully",
"statusCode": 200
}