Plaid Compatibility Layer
/auth/get
POST
/
auth
/
get
Copy
curl --request POST \
--url http://localhost:8080/plaid-compatible/auth/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": {}
}
],
"numbers": {
"ach": [
{
"account_id": "<string>",
"account": "<string>",
"routing": "<string>",
"wire_routing": "<string>"
}
],
"eft": [
{
"account_id": "<string>",
"account": "<string>",
"institution": "<string>",
"branch": "<string>"
}
],
"international": [
{
"account_id": "<string>",
"iban": "<string>",
"bic": "<string>"
}
],
"bacs": [
{
"account_id": "<string>",
"account": "<string>",
"sort_code": "<string>"
}
]
},
"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
AuthGetRequest defines the request schema for /auth/get
Response
200
application/json
OK
AuthGetResponse defines the response schema for /auth/get
Was this page helpful?
Copy
curl --request POST \
--url http://localhost:8080/plaid-compatible/auth/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": {}
}
],
"numbers": {
"ach": [
{
"account_id": "<string>",
"account": "<string>",
"routing": "<string>",
"wire_routing": "<string>"
}
],
"eft": [
{
"account_id": "<string>",
"account": "<string>",
"institution": "<string>",
"branch": "<string>"
}
],
"international": [
{
"account_id": "<string>",
"iban": "<string>",
"bic": "<string>"
}
],
"bacs": [
{
"account_id": "<string>",
"account": "<string>",
"sort_code": "<string>"
}
]
},
"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.