For the complete documentation index, see llms.txt. This page is also available as Markdown.

Signatures

Get signature for registering an address for an Ethos profile

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
typestring · enumRequiredPossible values:
addressstringRequired

Ethereum address (0x-prefixed, 20 bytes)

Responses
200

Successful response

application/json
randValuenumberRequired
signaturestringRequired
post/signatures/register-address
POST /api/v2/signatures/register-address HTTP/1.1
Host: api.ethos.network
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "type": "delegateXyz",
  "address": "text"
}
{
  "randValue": 1,
  "signature": "text"
}

Last updated