Use this endpoint to register an Ethereum wallet address with ArcPass. If the address has never been seen before, a new wallet profile is created and the response returnsDocumentation Index
Fetch the complete documentation index at: https://docs.arcpass.vibepas.xyz/llms.txt
Use this file to discover all available pages before exploring further.
201 Created. If the address is already registered, the existing profile is returned with 200 OK. This endpoint is idempotent — calling it multiple times for the same address is safe.
Request
POST /wallets/register
The Ethereum address to register. Must be a checksummed or lowercase hex address matching the pattern
^0x[0-9a-fA-F]{40}$. Maximum length is 42 characters.Response
UUID uniquely identifying this wallet record.
The registered Ethereum address, normalized to lowercase.
ISO 8601 timestamp of when this wallet was first registered with ArcPass.
ISO 8601 timestamp of the most recent interaction with this wallet.
Total number of sponsorship requests ever submitted for this wallet.
Whether this wallet has been flagged and blocked from receiving sponsorships.
Errors
| Status | Cause |
|---|---|
400 | walletAddress is missing or does not match the required hex pattern. |
422 | Validation error — the request body contains unexpected fields or a malformed value. |