System
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Successful response
application/json
401
Authorization not provided
application/json
403
Insufficient access
application/json
500
Internal server error
application/json
get
/healthcheck/authenticatedGET /api/v2/healthcheck/authenticated HTTP/1.1
Host: api.ethos.network
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"ok": true,
"profileId": 1
}Waits until the transaction has been processed by Ethos event processors or until the timeout elapses. > ⚠️ Warning: This is a beta endpoint. It is not guaranteed to be stable and may change or break without notice.
Path parameters
txHashstringRequired
Query parameters
timeoutMsinteger · max: 25000OptionalDefault:
10000Responses
200
Successful response
application/json
400
Invalid input data
application/json
404
Not found
application/json
500
Internal server error
application/json
get
/transactions/{txHash}/processedGET /api/v2/transactions/{txHash}/processed HTTP/1.1
Host: api.ethos.network
Accept: */*
{
"processed": true,
"status": "not_found"
}Last updated