GET
/
api
/
v1
/
wallets
/
verify
curl --request GET \
  --url https://integration-api.meshconnect.com/api/v1/wallets/verify \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "content": {
    "verifications": [
      {
        "userId": "user-1",
        "address": "address-1",
        "networkType": "evm",
        "verificationMethod": "signedMessage",
        "message": "Some test message",
        "signedMessageHash": "signature-1",
        "timestamp": 1733896980
      },
      {
        "userId": "user-1",
        "address": "address-2",
        "networkType": "evm",
        "verificationMethod": "signedMessage",
        "message": "Some test message",
        "signedMessageHash": "signature-2",
        "timestamp": 1733896980
      }
    ]
  },
  "status": "ok",
  "message": "",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Mesh to get client Secret

X-Client-Id
string
header
required

Contact Mesh to get client Id

Query Parameters

UserId
string

User identifier.

Address
string

Address of the wallet.

Response

200
application/json
Verifications obtained.
status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked,
unavailableForLegalReasons
message
string | null

A message generated by the API

displayMessage
string | null

User-friendly display message that can be presented to the end user

errorType
string | null

Strictly-typed error type that is explaining the reason of an unsuccessful status of the operation. All possible error types are available in the documentation.

errorData
any | null
content
object

Verifications response.