Account

Get Account Info

get

Retrieve the current account info.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Ok

application/json
get
/account/v1/me
GET /account/v1/me HTTP/1.1
Host: api.dev.hyphen.at/
Authorization: Bearer YOUR_SECRET_TOKEN
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-12-07T18:42:33.281Z",
    "updatedAt": "2025-12-07T18:42:33.281Z"
  }
}

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
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Ok

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

Ok

{
  "account": {
    "parent": [],
    "id": "text",
    "createdAt": "2025-12-07T18:42:33.281Z",
    "addresses": []
  }
}

Last updated

Was this helpful?