Skip to main content
GET
/
accounts
/
{user_id}
Get US Account
curl --request GET \
  --url https://sandbox.sturdytechnologies.com/v3/accounts/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "account_id": "12345hgyd78yuyu9",
    "account_status": "ACTIVE|INACTIVE|BLOCKED",
    "balance": 0,
    "numbers": {
      "ACH": {
        "account_number": "0000",
        "routing_number": "021000021"
      },
      "RTP": {
        "account_number": "0000",
        "routing_number": "021000021"
      },
      "WIRE": {
        "account_number": "0000",
        "routing_number": "021000021"
      }
    }
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

User Identifier

Response

OK

data
object
message
string
success
boolean