Financial account record for a user, tracking account number, balance, currency, account type, and status. Used for banking, payment, and financial management systems.
https://api.mockly.codes/accounts?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/accountsGet a collection of accounts
/finance/accounts/accounts/:idGet a single account by ID
/finance/accounts/:id/accounts/metaGet resource metadata and schema
/finance/accounts/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/accounts?q=laptopGET https://api.mockly.codes/accounts?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 accounts
fetch('https://api.mockly.codes/accounts?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/accounts?count=10'
)
data = response.json()curl "https://api.mockly.codes/accounts?count=10"fetch('https://api.mockly.codes/accounts?nocache=true')idintegerUnique identifier for the account record
random_intaccount_numberstringUnique account number or identifier for the financial account
uuiduser_idintegerForeign key reference to the user who owns this account
random_intbalancenumberCurrent account balance in the account's currency
pricecurrencystringISO currency code for the account (e.g., USD, EUR, GBP)
currencytypestringAccount type (e.g., checking, savings, credit, investment, wallet)
wordstatusstringAccount status (e.g., active, inactive, frozen, closed, pending)
statuscountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request