Plaid Compatibility Layer
/accounts/get
POST
/
accounts
/
get
Copy
curl --request POST \
--url http://localhost:8080/plaid-compatible/accounts/get \
--header 'Content-Type: application/json' \
--header 'PLAID-CLIENT-ID: <api-key>' \
--data '{
"client_id": "<string>",
"secret": "<string>",
"access_token": "<string>",
"options": {
"account_ids": [
"<string>"
]
}
}'
Copy
{
"accounts": [
{
"account_id": "<string>",
"balances": {
"available": 123,
"current": 123,
"limit": 123,
"iso_currency_code": "<string>"
},
"mask": "<string>",
"name": "<string>",
"type": "investment",
"subtype": {}
}
],
"item": {
"item_id": "<string>",
"institution_id": "<string>",
"webhook": "<string>",
"error": {
"error_type": "INVALID_REQUEST",
"error_code": "<string>",
"error_message": "<string>",
"display_message": "<string>",
"request_id": "<string>",
"causes": [
{}
],
"status": 123,
"documentation_url": "<string>",
"suggested_action": "<string>"
},
"available_products": [
"transactions"
],
"billed_products": [
"transactions"
],
"products": [
"transactions"
],
"consented_products": [
"transactions"
]
},
"request_id": "<string>"
}
Authorizations
Headers
Body
application/json
AccountsGetRequest defines the request schema for /accounts/get
Response
200
application/json
OK
AccountsGetResponse defines the response schema for /accounts/get
and /accounts/balance/get
.
Was this page helpful?
Copy
curl --request POST \
--url http://localhost:8080/plaid-compatible/accounts/get \
--header 'Content-Type: application/json' \
--header 'PLAID-CLIENT-ID: <api-key>' \
--data '{
"client_id": "<string>",
"secret": "<string>",
"access_token": "<string>",
"options": {
"account_ids": [
"<string>"
]
}
}'
Copy
{
"accounts": [
{
"account_id": "<string>",
"balances": {
"available": 123,
"current": 123,
"limit": 123,
"iso_currency_code": "<string>"
},
"mask": "<string>",
"name": "<string>",
"type": "investment",
"subtype": {}
}
],
"item": {
"item_id": "<string>",
"institution_id": "<string>",
"webhook": "<string>",
"error": {
"error_type": "INVALID_REQUEST",
"error_code": "<string>",
"error_message": "<string>",
"display_message": "<string>",
"request_id": "<string>",
"causes": [
{}
],
"status": 123,
"documentation_url": "<string>",
"suggested_action": "<string>"
},
"available_products": [
"transactions"
],
"billed_products": [
"transactions"
],
"products": [
"transactions"
],
"consented_products": [
"transactions"
]
},
"request_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.