Skip to main content
GET
/
platform
/
admin
/
administration
/
chain_explorers
Retrieves the configured chain explorer credentials across all supported providers.
curl --request GET \
  --url https://api.example.com/platform/admin/administration/chain_explorers
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Response

200 - application/json

Returns the list of chain explorer credentials when the operation succeeds.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}
value
object[] | null

The result value returned when the operation is successful.