RelayerAPI Reference
Retrieves details of a specific relayer by ID.
AuthorizationBearer <token>
In: header
Path Parameters
relayer_idstring
The unique identifier of the relayer
Response Body
curl -X GET "https://loading/api/v1/relayers/string"
{
"data": {
"address": "string",
"custom_rpc_urls": [
{
"url": "string",
"weight": 0
}
],
"id": "string",
"name": "string",
"network": "string",
"network_type": "evm",
"notification_id": "string",
"paused": true,
"policies": {
"eip1559_pricing": true,
"gas_limit_estimation": true,
"gas_price_cap": 0,
"min_balance": 0,
"private_transactions": true,
"whitelist_receivers": [
"string"
]
},
"signer_id": "string",
"system_disabled": true
},
"error": "string",
"pagination": {
"current_page": 0,
"per_page": 0,
"total_items": 0
},
"success": true
}
{
"data": null,
"message": "Bad Request",
"success": false
}
{
"data": null,
"message": "Unauthorized",
"success": false
}
{
"data": null,
"message": "Relayer with ID relayer_id not found",
"success": false
}
{
"data": null,
"message": "Too Many Requests",
"success": false
}
{
"data": null,
"message": "Internal Server Error",
"success": false
}