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

Obtain signature information

Obtain the information to be signed, mainly used for interfaces that require signature verification, such as login, etc.

Obtain signature information

post

Submit Loan Application

Body
messagestringRequired
paramsobject · Keep consistent with the next endpoint parametersRequired
Responses
200Success
application/json
codeintegerRequired
msgstringRequired
req_idstringRequired
post/api/nexus/manage/signature/challenge
POST /api/nexus/manage/signature/challenge HTTP/1.1
Host: 127.0.0.1:8090
Content-Type: application/json
Accept: */*
Content-Length: 61

{
  "message": "",
  "params": {
    "csd": "das",
    "asd": "dsa",
    "bsd": "dsa"
  }
}
{
  "code": 1,
  "msg": "text",
  "data": {
    "message": "text"
  },
  "req_id": "text"
}

Last updated