Account

Get Account Info

get

Retrieve the current account info.

Authorizations
Responses
200
Ok
application/json
get
GET //account/v1/me HTTP/1.1
Host: api.dev.hyphen.at
Authorization: Bearer JWT
Accept: */*
200

Ok

{
  "account": {
    "id": "text",
    "addresses": [
      {
        "address": "0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B",
        "profileImageUrl": "text",
        "domainName": "vitalik.eth",
        "chainName": "flow-mainnet",
        "chainId": 80001,
        "chainType": "evm"
      }
    ],
    "parent": [
      {
        "address": "0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B",
        "profileImageUrl": "text",
        "domainName": "vitalik.eth",
        "chainName": "flow-mainnet",
        "chainId": 80001,
        "chainType": "evm"
      }
    ],
    "createdAt": "2025-06-25T06:41:37.191Z",
    "updatedAt": "2025-06-25T06:41:37.191Z"
  }
}

Link Account

post

After linking the account from the client (in Flow chain), use this API to report that the account is linked to the parent.

Authorizations
Responses
200
Ok
application/json
post
POST //account/v1/parent HTTP/1.1
Host: api.dev.hyphen.at
Authorization: Bearer JWT
Accept: */*
200

Ok

{
  "account": {
    "parent": [],
    "id": "text",
    "createdAt": "2025-06-25T06:41:37.191Z",
    "addresses": []
  }
}

Last updated

Was this helpful?