SSO
  1. wallet
SSO
  • sso
    • admin
      • account-create
      • account-suspend
      • account-unsuspend
      • account-bind-wallet
    • applications
      • scope
        • add
        • delete
      • user
        • add
        • update
        • delete
        • user-all
        • is-allowed
      • create
      • delete
      • new-api-key
      • all
      • all-own
      • details
      • is-owner
    • auth
      • token
        • token-refresh
      • register
        • register
        • request-email-code
        • verify-email-code
      • password
        • password-reset
        • request-email-code
        • verify-email-code
      • discord
        • authorize-URL
        • login
      • login
      • auth-me
      • logout
    • auth-eth
      • login-challenge
      • login
      • bind-account
      • bind-challenge
      • is-bound
    • access
      • planning
        • session
          • get
          • all
          • find
          • create
          • update
          • delete
        • assistant
          • create-sessions
          • delete-sessions
        • get
      • pbe-access
        • is-authorized
    • newsletter
      • get-subscribers
    • user
      • me
        • email
          • update
        • password
          • update
      • role
        • all
        • update-role
        • update-role-batch
        • delete-role
        • delete-role-batch
      • all
      • find
    • wallet
      • find-owner
        GET
      • find-wallet
        GET
    • Get API version
      GET
  1. wallet

find-owner

GET
https://sso.dlab.ovh/api/wallet/owner/find
find the owner of a given wallet address at a given time in the SSO wallet history

Request

Query Params
walletAddress
string 
required
ethereum address
Example:
0xcb05C03A2063f331EB1520a65Cb99172E67B999a
at
string 
optional
date in UTC
Example:
2022-07-13T18:00:00.000Z
Header Params
Authorization
string 
optional
Example:
Bearer {{token}}
x-api-key
string 
optional
Example:
b1498f6a964a4cc4a01ac6643b4577c9

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sso.dlab.ovh/api/wallet/owner/find?walletAddress=0xcb05C03A2063f331EB1520a65Cb99172E67B999a'

Responses

🟢200Success
application/json
Body
walletAddress
string 
required
user
object 
optional
email
string 
required
identifier
string 
required
Example
{
    "walletAddress": "0xcb05C03A2063f331EB1520a65Cb99172E67B999a",
    "user": {
        "email": "kevin@rct.ai",
        "identifier": "f3806ab7-eb3e-4bd7-baeb-5edb55e4c3f0"
    }
}
Previous
find
Next
find-wallet
Built with