Joint Checking
- userId
-
Jabari Farrell @jabari_farrell75
- name
- Joint Checking
- type
- checking
- balance
- 9416.5
- currency
- USD
- isActive
- true
- createdAt
Overview
accounts / #483
Joint Checking
#483
Request
curl example
curl -sS \ "https://example-data.com/api/v1/accounts/483" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/accounts/483" ); const account = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/accounts.d.ts https://example-data.com/types/accounts.d.ts
import type { Account } from "./types/accounts";
const res = await fetch(
"https://example-data.com/api/v1/accounts/483"
);
const account = (await res.json()) as Account; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/483"
)
account = res.json() Response
{
"id": 483,
"userId": 240,
"name": "Joint Checking",
"type": "checking",
"balance": 9416.5,
"currency": "USD",
"isActive": true,
"createdAt": "2025-06-25T15:26:47.077Z"
}