Processor partner endpoints
API reference for endpoints for use by Plaid partners
Partner processor endpoints are used by Plaid partners to integrate with Plaid. Instead of using an access_token
associated with a Plaid Item
, these endpoints use a processor_token
to identify a single financial account. These endpoints are used only by partners and not by developers who are using those partners' APIs. If you are a Plaid developer who would like to use a partner, see Processor token endpoints. To learn how to move money with one of our partners, see Move money with Auth.
In this section | |
---|---|
/processor/account/get | Fetch Account data |
/processor/auth/get | Fetch Auth data |
/processor/balance/get | Fetch Balance data |
/processor/identity/get | Fetch Identity data |
/processor/identity/match | Retrieve Identity match scores |
/processor/liabilities/get | Retrieve Liabilities data |
/processor/signal/evaluate | Retrieve Signal scores |
/processor/signal/decision/report | Report whether you initiated an ACH transaction |
/processor/signal/return/report | Report a return for an ACH transaction |
/processor/signal/prepare | Prepare a processor token for Signal |
/processor/token/webhook/update | Set the webhook URL for a processor token |
/processor/transactions/sync | Get transaction data or incremental transaction updates |
/processor/transactions/get | Fetch transaction data |
/processor/transactions/recurring/get | Fetch recurring transaction data |
/processor/transactions/refresh | Refresh transaction data |
Webhooks | |
---|---|
WEBHOOK_UPDATE_ACKNOWLEDGED | Item's webhook receiver endpoint has been updated |
/processor/account/get
Retrieve the account associated with a processor token
This endpoint returns the account associated with a given processor token.
This endpoint retrieves cached information, rather than extracting fresh information from the institution. As a result, the account balance returned may not be up-to-date; for realtime balance information, use /processor/balance/get
instead. Note that some information is nullable.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.processor_token
processor-<environment>-<identifier>
secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.1try {2 const request: ProcessorAccountGetRequest = {3 processor_token: processorToken,4 };5 const response = await plaidClient.ProcessorAccountGet(request);6} catch (error) {7 // handle error8}
Response fields and example
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
institution_id
request_id
1{2 "account": {3 "account_id": "QKKzevvp33HxPWpoqn6rI13BxW4awNSjnw4xv",4 "balances": {5 "available": 100,6 "current": 110,7 "limit": null,8 "iso_currency_code": "USD",9 "unofficial_currency_code": null10 },11 "mask": "0000",12 "name": "Plaid Checking",13 "official_name": "Plaid Gold Checking",14 "subtype": "checking",15 "type": "depository"16 },17 "institution_id": "ins_109508",18 "request_id": "1zlMf"19}
Was this helpful?
/processor/auth/get
Retrieve Auth data
The /processor/auth/get
endpoint returns the bank account and bank identification number (such as the routing number, for US accounts), for a checking or savings account that''s associated with a given processor_token
. The endpoint also returns high-level account data and balances when available.
Versioning note: API versions 2019-05-29 and earlier use a different schema for the numbers
object returned by this endpoint. For details, see Plaid API versioning.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
1const request: ProcessorAuthGetRequest = {2 processor_token: processorToken,3};4const response = plaidClient.processorAuthGet(request);
Response fields and example
request_id
numbers
account
. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by the account
for which auth data has been requested, a null value will be returned.ach
account_id
account
Note that when using OAuth with Chase Bank (
ins_56
), Chase will issue "tokenized" routing and account numbers, which are not the user's actual account and routing numbers. These tokenized account numbers (also known as TANs) should work identically to normal account and routing numbers. The digits returned in the mask
field will continue to reflect the actual account number, rather than the tokenized account number; for this reason, when displaying account numbers to the user to help them identify their account in your UI, always use the mask
rather than truncating the account
number. If a user revokes their permissions to your app, the tokenized numbers will no longer work.routing
ins_56
, this may be a tokenized routing number. For more information, see the description of the account
field.wire_routing
eft
account_id
account
institution
branch
international
account_id
iban
bic
bacs
account_id
account
sort_code
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
1{2 "account": {3 "account_id": "vzeNDwK7KQIm4yEog683uElbp9GRLEFXGK98D",4 "balances": {5 "available": 100,6 "current": 110,7 "iso_currency_code": "USD",8 "limit": null,9 "unofficial_currency_code": null10 },11 "mask": "0000",12 "name": "Plaid Checking",13 "official_name": "Plaid Gold Checking",14 "subtype": "checking",15 "type": "depository"16 },17 "numbers": {18 "ach": {19 "account": "9900009606",20 "account_id": "vzeNDwK7KQIm4yEog683uElbp9GRLEFXGK98D",21 "routing": "011401533",22 "wire_routing": "021000021"23 },24 "eft": {25 "account": "111122223333",26 "account_id": "vzeNDwK7KQIm4yEog683uElbp9GRLEFXGK98D",27 "institution": "021",28 "branch": "01140"29 },30 "international": {31 "account_id": "vzeNDwK7KQIm4yEog683uElbp9GRLEFXGK98D",32 "bic": "NWBKGB21",33 "iban": "GB29NWBK60161331926819"34 },35 "bacs": {36 "account": "31926819",37 "account_id": "vzeNDwK7KQIm4yEog683uElbp9GRLEFXGK98D",38 "sort_code": "601613"39 }40 },41 "request_id": "1zlMf"42}
Was this helpful?
/processor/balance/get
Retrieve Balance data
The /processor/balance/get
endpoint returns the real-time balance for each of an Item's accounts. While other endpoints may return a balance object, only /processor/balance/get
forces the available and current balance fields to be refreshed rather than cached.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
options
/processor/balance/get
results.min_last_updated _datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only necessary when the institution is
ins_128026
(Capital One), and the account type is a non-depository account (such as a credit card) in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For all other institutions, as well as for depository accounts at Capital One (including all checking and savings accounts) this field is ignored.If this field is not ignored, and no acceptable balance is available, an
INVALID_RESULT
error with the code LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned.date-time
1const request: ProcessorBalanceGetRequest = {2 processor_token: processorToken,3};4const response = plaidClient.processorBalanceGet(request);
Response fields and example
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
request_id
1{2 "account": {3 "account_id": "QKKzevvp33HxPWpoqn6rI13BxW4awNSjnw4xv",4 "balances": {5 "available": 100,6 "current": 110,7 "limit": null,8 "iso_currency_code": "USD",9 "unofficial_currency_code": null10 },11 "mask": "0000",12 "name": "Plaid Checking",13 "official_name": "Plaid Gold Checking",14 "subtype": "checking",15 "type": "depository"16 },17 "request_id": "1zlMf"18}
Was this helpful?
/processor/identity/get
Retrieve Identity data
The /processor/identity/get
endpoint allows you to retrieve various account holder information on file with the financial institution, including names, emails, phone numbers, and addresses.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
1const request: ProcessorIdentityGetRequest = {2 processor_token: processorToken,3};4const response = plaidClient.processorIdentityGet(request);
Response fields and example
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
owners
owner
object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the owners
object is not returned, and instead identity information is returned in the top level identity
object. For more details, see Plaid API versioningnames
If an Item contains multiple accounts with different owner names, some institutions will report all names associated with the Item in each account's
names
array.phone_numbers
emails
addresses
data
city
region
state
.
Example: "NC"
street
"564 Main Street, APT 15"
postal_code
zip
.country
primary
true
, identifies the address as the primary address on an account.request_id
1{2 "account": {3 "account_id": "XMGPJy4q1gsQoKd5z9R3tK8kJ9EWL8SdkgKMq",4 "balances": {5 "available": 100,6 "current": 110,7 "iso_currency_code": "USD",8 "limit": null,9 "unofficial_currency_code": null10 },11 "mask": "0000",12 "name": "Plaid Checking",13 "official_name": "Plaid Gold Standard 0% Interest Checking",14 "owners": [15 {16 "addresses": [17 {18 "data": {19 "city": "Malakoff",20 "country": "US",21 "postal_code": "14236",22 "region": "NY",23 "street": "2992 Cameron Road"24 },25 "primary": true26 },27 {28 "data": {29 "city": "San Matias",30 "country": "US",31 "postal_code": "93405-2255",32 "region": "CA",33 "street": "2493 Leisure Lane"34 },35 "primary": false36 }37 ],38 "emails": [39 {40 "data": "accountholder0@example.com",41 "primary": true,42 "type": "primary"43 },44 {45 "data": "accountholder1@example.com",46 "primary": false,47 "type": "secondary"48 },49 {50 "data": "extraordinarily.long.email.username.123456@reallylonghostname.com",51 "primary": false,52 "type": "other"53 }54 ],55 "names": [56 "Alberta Bobbeth Charleson"57 ],58 "phone_numbers": [59 {60 "data": "1112223333",61 "primary": false,62 "type": "home"63 },64 {65 "data": "1112224444",66 "primary": false,67 "type": "work"68 },69 {70 "data": "1112225555",71 "primary": false,72 "type": "mobile1"73 }74 ]75 }76 ],77 "subtype": "checking",78 "type": "depository"79 },80 "request_id": "eOPkBl6t33veI2J"81}
Was this helpful?
/processor/identity/match
Retrieve identity match score
The /processor/identity/match
endpoint generates a match score, which indicates how well the provided identity data matches the identity information on file with the account holder's financial institution.
Fields within the balances
object will always be null when retrieved by /identity/match
. Instead, use the free /accounts/get
endpoint to request balance cached data, or /accounts/balance/get
for real-time data.
This request may take some time to complete if Identity was not specified as an initial product when creating the Item. This is because Plaid must communicate directly with the institution to retrieve the data.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
user
legal_name
phone_number
email_address
address
city
region
state
.
Example: "NC"
street
"564 Main Street, APT 15"
postal_code
zip
.country
1const request: ProcessorIdentityMatchRequest = {2 processor_token: processorToken,3};4const response = plaidClient.processorIdentityMatch(request);
Response fields and example
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
legal_name
score
is_first_name_or_last _name_match
is_nickname_match
is_business_name _detected
true
if the name on either of the names that was matched for the score contained strings indicative of a business name, such as "CORP", "LLC", "INC", or "LTD". A true
result generally indicates the entity is a business. However, a false
result does not mean the entity is not a business, as some businesses do not use these strings in the names used for their financial institution accounts.phone_number
score
email_address
score
address
score
is_postal_code_match
request_id
1{2 "account": {3 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",4 "balances": {5 "available": null,6 "current": null,7 "iso_currency_code": null,8 "limit": null,9 "unofficial_currency_code": null10 },11 "mask": "0000",12 "name": "Plaid Checking",13 "official_name": "Plaid Gold Standard 0% Interest Checking",14 "legal_name": {15 "score": 90,16 "is_nickname_match": true,17 "is_first_name_or_last_name_match": true,18 "is_business_name_detected": false19 },20 "phone_number": {21 "score": 10022 },23 "email_address": {24 "score": 10025 },26 "address": {27 "score": 100,28 "is_postal_code_match": true29 },30 "subtype": "checking",31 "type": "depository"32 },33 "request_id": "3nARps6TOYtbACO"34}
Was this helpful?
/processor/signal/evaluate
Evaluate a planned ACH transaction
Use /processor/signal/evaluate
to evaluate a planned ACH transaction as a processor to get a return risk assessment (such as a risk score and risk tier) and additional risk signals.
In order to obtain a valid score for an ACH transaction, Plaid must have an access token for the account, and the Item must be healthy (receiving product updates) or have recently been in a healthy state. If the transaction does not meet eligibility requirements, an error will be returned corresponding to the underlying cause. If /processor/signal/evaluate
is called on the same transaction multiple times within a 24-hour period, cached results may be returned. For more information please refer to our error documentation on item errors and Link in Update Mode.
Note: This request may take some time to complete if Signal is being added to an existing Item. This is because Plaid must communicate directly with the institution when retrieving the data for the first time. To reduce this latency, you can call /signal/prepare
on the Item before you need to request Signal data.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
client_transaction_id
1
36
amount
102.05
)double
user_present
true
if the end user is present while initiating the ACH transfer and the endpoint is being called; false
otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing).client_user_id
client_user_id
.is_recurring
default_payment_method
SAME_DAY_ACH
: Same Day ACH by NACHA. The debit transaction is processed and settled on the same day
NEXT_DAY_ACH
: Next Day ACH settlement for debit transactions, offered by some payment processors
STANDARD_ACH
: standard ACH by NACHA
REAL_TIME_PAYMENTS
: real-time payments such as RTP and FedNow
DEBIT_CARD
: if the default payment is over debit card networks
MULTIPLE_PAYMENT_METHODS
: if there is no default debit rail or there are multiple payment methods
Possible values: SAME_DAY_ACH
, NEXT_DAY_ACH
, STANDARD_ACH
, REAL_TIME_PAYMENTS
, DEBIT_CARD
, MULTIPLE_PAYMENT_METHODS
user
/signal/evaluate
or /signal/processor/evaluate
, this field is optional, but strongly recommended to increase the accuracy of Signal results.name
prefix
given_name
middle_name
family_name
suffix
phone_number
email_address
device
/signal/evaluate
or /signal/processor/evaluate
, this field is optional, but strongly recommended to increase the accuracy of Signal results.ip_address
user_agent
1const eval_request = {2 processor_token: 'processor-sandbox-71e02f71-0960-4a27-abd2-5631e04f2175',3 client_transaction_id: 'txn12345',4 amount: 123.45,5 client_user_id: 'user1234',6 user: {7 name: {8 prefix: 'Ms.',9 given_name: 'Jane',10 middle_name: 'Leah',11 family_name: 'Doe',12 suffix: 'Jr.',13 },14 phone_number: '+14152223333',15 email_address: 'jane.doe@example.com',16 address: {17 street: '2493 Leisure Lane',18 city: 'San Matias',19 region: 'CA',20 postal_code: '93405-2255',21 country: 'US',22 },23 },24 device: {25 ip_address: '198.30.2.2',26 user_agent:27 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1',28 },29 user_present: true,30};3132try {33 const eval_response = await plaidClient.processorSignalEvaluate(eval_request);34 const core_attributes = eval_response.data.core_attributes;35 const scores = eval_response.data.scores;36} catch (error) {37 // handle error38}
Response fields and example
request_id
scores
customer_initiated _return_risk
score
1
99
risk_tier
In the
customer_initiated_return_risk
object, there are five risk tiers corresponding to the scores:
1: Predicted customer-initiated return incidence rate between 0.00% - 0.02%
2: Predicted customer-initiated return incidence rate between 0.02% - 0.05%
3: Predicted customer-initiated return incidence rate between 0.05% - 0.1%
4: Predicted customer-initiated return incidence rate between 0.1% - 0.5%
5: Predicted customer-initiated return incidence rate greater than 0.5%1
5
bank_initiated_return _risk
score
1
99
risk_tier
bank_initiated_return_risk
object, there are eight risk tiers corresponding to the scores:
1: Predicted bank-initiated return incidence rate between 0.0% - 0.5%
2: Predicted bank-initiated return incidence rate between 0.5% - 1.5%
3: Predicted bank-initiated return incidence rate between 1.5% - 3%
4: Predicted bank-initiated return incidence rate between 3% - 5%
5: Predicted bank-initiated return incidence rate between 5% - 10%
6: Predicted bank-initiated return incidence rate between 10% - 15%
7: Predicted bank-initiated return incidence rate between 15% and 50%
8: Predicted bank-initiated return incidence rate greater than 50%1
8
core_attributes
days_since_first_plaid_connection
: The number of days since the first time the Item was connected to an application via Plaid
plaid_connections_count_7d
: The number of times the Item has been connected to applications via Plaid over the past 7 days
plaid_connections_count_30d
: The number of times the Item has been connected to applications via Plaid over the past 30 days
total_plaid_connections_count
: The number of times the Item has been connected to applications via Plaid
is_savings_or_money_market_account
: Indicates whether the ACH transaction funding account is a savings/money market accountFor the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager
warnings
warning_type
warning_code
ITEM_LOGIN_REQUIRED
warning, we recommend re-authenticating your user by implementing Link's update mode. This will guide your user to fix their credentials, allowing Plaid to start fetching data again for future Signal requests.warning_message
1{2 "scores": {3 "customer_initiated_return_risk": {4 "score": 9,5 "risk_tier": 16 },7 "bank_initiated_return_risk": {8 "score": 72,9 "risk_tier": 710 }11 },12 "core_attributes": {13 "days_since_first_plaid_connection": 510,14 "plaid_connections_count_7d": 6,15 "plaid_connections_count_30d": 7,16 "total_plaid_connections_count": 15,17 "is_savings_or_money_market_account": false18 },19 "warnings": [],20 "request_id": "mdqfuVxeoza6mhu"21}
Was this helpful?
/processor/liabilities/get
Retrieve Liabilities data
The /processor/liabilities/get
endpoint returns various details about a loan or credit account. Liabilities data is available primarily for US financial institutions, with some limited coverage of Canadian institutions. Currently supported account types are account type credit
with account subtype credit card
or paypal
, and account type loan
with account subtype student
or mortgage
.
The types of information returned by Liabilities can include balances and due dates, loan terms, and account details such as original loan amount and guarantor. Data is refreshed approximately once per day; the latest data can be retrieved by calling /processor/liabilities/get
.
Note: This request may take some time to complete if liabilities
was not specified as an initial product when creating the processor token. This is because Plaid must communicate directly with the institution to retrieve the additional data.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
1const request: ProcessorLiabilitiesGetRequest = {2 processor_token: processorToken,3};4const response = plaidClient.processorLiabilitiesGet(request);
Response fields and example
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
liabilities
credit
account_id
aprs
apr_percentage
double
apr_type
balance_transfer_apr
, cash_apr
, purchase_apr
, special
balance_subject_to_apr
double
interest_charge_amount
double
is_overdue
last_payment_amount
double
last_payment_date
date
last_statement_issue _date
last_statement_balance
double
minimum_payment_amount
double
next_payment_due_date
null
if a payment is not expected. Dates are returned in an ISO 8601 format (YYYY-MM-DD).date
mortgage
account_id
account_number
current_late_fee
double
escrow_balance
double
has_pmi
has_prepayment_penalty
interest_rate
percentage
double
type
last_payment_amount
double
last_payment_date
loan_type_description
conventional
, fixed
, or variable
. This field is provided directly from the loan servicer and does not have an enumerated set of possible values.loan_term
10 year
).maturity_date
date
next_monthly_payment
double
next_payment_due_date
date
origination_date
date
origination_principal _amount
double
past_due_amount
double
property_address
city
country
postal_code
region
street
ytd_interest_paid
double
ytd_principal_paid
double
student
account_id
account_number
disbursement_dates
date
expected_payoff_date
date
guarantor
interest_rate _percentage
double
is_overdue
true
if a payment is currently overdue. Availability for this field is limited.last_payment_amount
double
last_payment_date
last_statement_issue _date
loan_name
loan_status
type
cancelled
, charged off
, claim
, consolidated
, deferment
, delinquent
, discharged
, extension
, forbearance
, in grace
, in military
, in school
, not fully disbursed
, other
, paid in full
, refunded
, repayment
, transferred
, pending idr
minimum_payment_amount
ins_116861
), Firstmark (ins_116295
), Commonbond Firstmark Services (ins_116950
), Nelnet (ins_116528
), EdFinancial Services (ins_116304
), Granite State (ins_116308
), and Oklahoma Student Loan Authority (ins_116945
).
Firstmark (ins_116295
) and Navient (ins_116248
) will display as $0 if there is an autopay program in effect.double
next_payment_due_date
null
if a payment is not expected. A payment is not expected if loan_status.type
is deferment
, in_school
, consolidated
, paid in full
, or transferred
. Dates are returned in an ISO 8601 format (YYYY-MM-DD).date
origination_date
date
origination_principal _amount
double
outstanding_interest _amount
ins_116944
), this amount is included in the current balance of the loan, so this field will return as null
.double
payment_reference _number
payment_reference_number
will match account_number,
but in some institutions, such as Great Lakes (ins_116861
), it will be different.pslf_status
ins_116527
).estimated_eligibility _date
date
payments_made
payments_remaining
repayment_plan
description
type
extended graduated
, extended standard
, graduated
, income-contingent repayment
, income-based repayment
, interest-only
, other
, pay as you earn
, revised pay as you earn
, standard
, saving on a valuable education
, null
sequence_number
ins_116948
) does not make this field available.servicer_address
city
region
"NC"
street
"564 Main Street, APT 15"
postal_code
country
ytd_interest_paid
double
ytd_principal_paid
double
request_id
1{2 "account": {3 "account_id": "dVzbVMLjrxTnLjX4G66XUp5GLklm4oiZy88yK",4 "balances": {5 "available": null,6 "current": 410,7 "iso_currency_code": "USD",8 "limit": 2000,9 "unofficial_currency_code": null10 },11 "mask": "3333",12 "name": "Plaid Credit Card",13 "official_name": "Plaid Diamond 12.5% APR Interest Credit Card",14 "subtype": "credit card",15 "type": "credit"16 },17 "liabilities": {18 "credit": [19 {20 "account_id": "dVzbVMLjrxTnLjX4G66XUp5GLklm4oiZy88yK",21 "aprs": [22 {23 "apr_percentage": 15.24,24 "apr_type": "balance_transfer_apr",25 "balance_subject_to_apr": 1562.32,26 "interest_charge_amount": 130.2227 },28 {29 "apr_percentage": 27.95,30 "apr_type": "cash_apr",31 "balance_subject_to_apr": 56.22,32 "interest_charge_amount": 14.8133 },34 {35 "apr_percentage": 12.5,36 "apr_type": "purchase_apr",37 "balance_subject_to_apr": 157.01,38 "interest_charge_amount": 25.6639 },40 {41 "apr_percentage": 0,42 "apr_type": "special",43 "balance_subject_to_apr": 1000,44 "interest_charge_amount": 045 }46 ],47 "is_overdue": false,48 "last_payment_amount": 168.25,49 "last_payment_date": "2019-05-22",50 "last_statement_issue_date": "2019-05-28",51 "last_statement_balance": 1708.77,52 "minimum_payment_amount": 20,53 "next_payment_due_date": "2020-05-28"54 }55 ],56 "mortgage": [],57 "student": []58 },59 "request_id": "dTnnm60WgKGLnKL"60}
Was this helpful?
/processor/signal/decision/report
Report whether you initiated an ACH transaction
After calling /processor/signal/evaluate
, call /processor/signal/decision/report
to report whether the transaction was initiated.
If you are using the Plaid Transfer product to create transfers, it is not necessary to use this endpoint, as Plaid already knows whether the transfer was initiated.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
client_transaction_id
client_transaction_id
supplied when calling /signal/evaluate
1
36
initiated
true
if the ACH transaction was initiated, false
otherwise.This field must be returned as a boolean. If formatted incorrectly, this will result in an
INVALID_FIELD
error.days_funds_on_hold
For example, use 0 if you make funds available to your customers instantly or the same day following the debit transaction, or 1 if you make funds available the next day following the debit initialization.
0
decision_outcome
APPROVE
: approve the transaction without requiring further actions from your customers. For example, use this field if you are placing a standard hold for all the approved transactions before making funds available to your customers. You should also use this field if you decide to accelerate the fund availability for your customers.REVIEW
: the transaction requires manual reviewREJECT
: reject the transactionTAKE_OTHER_RISK_MEASURES
: for example, placing a longer hold on funds than those approved transactions or introducing customer frictions such as step-up verification/authenticationNOT_EVALUATED
: if only logging the Signal results without using themPossible values:
APPROVE
, REVIEW
, REJECT
, TAKE_OTHER_RISK_MEASURES
, NOT_EVALUATED
APPROVE
, REVIEW
, REJECT
, TAKE_OTHER_RISK_MEASURES
, NOT_EVALUATED
payment_method
SAME_DAY_ACH
: Same Day ACH by NACHA. The debit transaction is processed and settled on the same dayNEXT_DAY_ACH
: Next Day ACH settlement for debit transactions, offered by some payment processorsSTANDARD_ACH
: standard ACH by NACHAREAL_TIME_PAYMENTS
: real-time payments such as RTP and FedNowDEBIT_CARD
: if the default payment is over debit card networksMULTIPLE_PAYMENT_METHODS
: if there is no default debit rail or there are multiple payment methodsPossible values:
SAME_DAY_ACH
, NEXT_DAY_ACH
, STANDARD_ACH
, REAL_TIME_PAYMENTS
, DEBIT_CARD
, MULTIPLE_PAYMENT_METHODS
SAME_DAY_ACH
, NEXT_DAY_ACH
, STANDARD_ACH
, REAL_TIME_PAYMENTS
, DEBIT_CARD
, MULTIPLE_PAYMENT_METHODS
amount_instantly _available
double
1const decision_report_request = {2 processor_token: 'processor-sandbox-71e02f71-0960-4a27-abd2-5631e04f2175',3 client_transaction_id: 'txn12345',4 initiated: true,5 days_funds_on_hold: 3,6};78try {9 const decision_report_response = await plaidClient.processorSignalDecisionReport(10 decision_report_request,11 );12 const decision_request_id = decision_report_response.data.request_id;13} catch (error) {14 // handle error15}
Response fields and example
request_id
1{2 "request_id": "mdqfuVxeoza6mhu"3}
Was this helpful?
/processor/signal/return/report
Report a return for an ACH transaction
Call the /processor/signal/return/report
endpoint to report a returned transaction that was previously sent to the /processor/signal/evaluate
endpoint. Your feedback will be used by the model to incorporate the latest risk trend in your portfolio.
If you are using the Plaid Transfer product to create transfers, it is not necessary to use this endpoint, as Plaid already knows whether the transfer was returned.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
client_transaction_id
client_transaction_id
supplied when calling /processor/signal/evaluate
1
36
return_code
If formatted incorrectly, this will result in an
INVALID_FIELD
error.returned_at
YYYY-MM-DDTHH:mm:ssZ
).date-time
1const return_report_request = {2 processor_token: 'processor-sandbox-71e02f71-0960-4a27-abd2-5631e04f2175',3 client_transaction_id: 'txn12345',4 return_code: 'R01',5};67try {8 const return_report_response = await plaidClient.processorSignalReturnReport(9 return_report_request,10 );11 const request_id = return_report_response.data.request_id;12 console.log(request_id);13} catch (error) {14 // handle error15}
Response fields and example
request_id
1{2 "request_id": "mdqfuVxeoza6mhu"3}
Was this helpful?
/processor/signal/prepare
Opt-in a processor token to Signal
When a processor token is not initialized with Signal, call /processor/signal/prepare
to opt-in that processor token to the Signal data collection process, which will improve the accuracy of the Signal score.
If this endpoint is called with a processor token that is already initialized with Signal, it will return a 200 response and will not modify the processor token.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
1const prepare_request = {2 processor_token: 'processor-sandbox-71e02f71-0960-4a27-abd2-5631e04f2175',3};45try {6 const prepare_response = await plaidClient.processorSignalPrepare(7 prepare_request,8 );9 const prepare_request_id = prepare_response.data.request_id;10} catch (error) {11 // handle error12}
Response fields and example
request_id
1{2 "request_id": "mdqfuVxeoza6mhu"3}
Was this helpful?
/processor/token/webhook/update
Update a processor token's webhook URL
This endpoint allows you, the processor, to update the webhook URL associated with a processor token. This request triggers a WEBHOOK_UPDATE_ACKNOWLEDGED
webhook to the newly specified webhook URL.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.processor_token
processor-<environment>-<identifier>
webhook
null
.1try {2 const request: ProcessorTokenWebhookUpdateRequest = {3 processor_token: processorToken,4 webhook: webhook,5 };6 const response = await plaidClient.processorTokenWebhookUpdate(request);7} catch (error) {8 // handle error9}
Response fields and example
request_id
1{2 "request_id": "vYK11LNTfRoAMbj"3}
Was this helpful?
/processor/transactions/sync
Get incremental transaction updates on a processor token
This endpoint replaces /processor/transactions/get
and its associated webhooks for most common use-cases.
The /processor/transactions/sync
endpoint allows developers to subscribe to all transactions associated with a processor token and get updates synchronously in a stream-like manner, using a cursor to track which updates have already been seen. /processor/transactions/sync
provides the same functionality as /processor/transactions/get
and can be used instead of /processor/transactions/get
to simplify the process of tracking transactions updates.
This endpoint provides user-authorized transaction data for credit
, depository
, and some loan-type accounts (only those with account subtype student
; coverage may be limited). For transaction history from investments
accounts, use /investments/transactions/get
instead.
Returned transactions data is grouped into three types of update, indicating whether the transaction was added, removed, or modified since the last call to the API.
In the first call to /processor/transactions/sync
for a processor token, the endpoint will return all historical transactions data associated with that processor token up until the time of the API call (as "adds"), which then generates a next_cursor
for that processor token. In subsequent calls, send the next_cursor
to receive only the changes that have occurred since the previous call.
Due to the potentially large number of transactions associated with a processor token, results are paginated. The has_more
field specifies if additional calls are necessary to fetch all available transaction updates. Call /processor/transactions/sync
with the new cursor, pulling all updates, until has_more
is false
.
When retrieving paginated updates, track both the next_cursor
from the latest response and the original cursor from the first call in which has_more
was true
; if a call to /processor/transactions/sync
fails when retrieving a paginated update, which can occur as a result of the TRANSACTIONS_SYNC_MUTATION_DURING_PAGINATION
error, the entire pagination request loop must be restarted beginning with the cursor for the first page of the update, rather than retrying only the single request that failed.
Whenever new or updated transaction data becomes available, /processor/transactions/sync
will provide these updates. Plaid typically checks for new data multiple times a day, but these checks may occur less frequently, such as once a day, depending on the institution. To force Plaid to check for new transactions, use the /processor/transactions/refresh
endpoint.
Note that for newly created processor tokens, data may not be immediately available to /processor/transactions/sync
. Plaid begins preparing transactions data when the corresponding Item is created, but the process can take anywhere from a few seconds to several minutes to complete, depending on the number of transactions available.
To receive Transactions webhooks for a processor token, set its webhook URL via the /processor/token/webhook/update
endpoint.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.processor_token
processor-<environment>-<identifier>
secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.cursor
count
100
1
500
false
options
options
must not be null
.include_original _description
false
days_requested
If Transactions has already been added to the Item prior to this call, this field will have no effect.
We strongly recommend that customers utilizing Recurring Transactions request at least 180 days of history for optimal results.
1
730
90
1// Provide a cursor from your database if you've previously2// received one for the Item. Leave null if this is your3// first sync call for this Item. The first request will4// return a cursor.5let cursor = database.getLatestCursorOrNull(itemId);67// New transaction updates since "cursor"8let added: Array<Transaction> = [];9let modified: Array<Transaction> = [];10// Removed transaction ids11let removed: Array<RemovedTransaction> = [];12let hasMore = true;1314// Iterate through each page of new transaction updates for item15while (hasMore) {16 const request: ProcessorTransactionsSyncRequest = {17 processor_token: processorToken,18 cursor: cursor,19 };20 const response = await client.processorTransactionsSync(request);21 const data = response.data;2223 // Add this page of results24 added = added.concat(data.added);25 modified = modified.concat(data.modified);26 removed = removed.concat(data.removed);2728 hasMore = data.has_more;2930 // Update cursor to the next cursor31 cursor = data.next_cursor;32}3334// Persist cursor and updated data35database.applyUpdates(itemId, added, modified, removed, cursor);
Response fields and example
added
cursor
ordered by ascending last modified time.account_id
amount
iso_currency_code
or unofficial_currency_code
. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative.double
iso_currency_code
null
if unofficial_currency_code
is non-null.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
iso_currency_code
s.category
/categories/get
.All Transactions implementations are recommended to use the new
personal_finance_category
instead of category
, as it provides greater accuracy and more meaningful categorization.If the
transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.category_id
/categories/get
.All Transactions implementations are recommended to use the new
personal_finance_category
instead of category
, as it provides greater accuracy and more meaningful categorization.If the
transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.check_number
date
YYYY-MM-DD
). To receive information about the date that a posted transaction was initiated, see the authorized_date
field.date
location
address
city
region
state
.postal_code
zip
.country
lat
double
lon
double
store_number
name
If the
transactions
object was returned by a Transactions endpoint such as /transactions/sync
or /transactions/get
, this field will always appear. If the transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.merchant_name
name
field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be null
.original_description
/transactions/sync
or /transactions/get
, this field will be omitted unless the client has set options.include_original_description
to true
.payment_meta
null
.If the
transactions
object was returned by a Transactions endpoint such as /transactions/sync
or /transactions/get
, the payment_meta
key will always appear, but no data elements are guaranteed. If the transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.reference_number
ppd_id
payee
by_order_of
null
if the transaction is not a wire transfer.payer
payment_method
payment_processor
reason
pending
true
, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.pending_transaction_id
account_owner
transaction_id
transaction_id
is case sensitive.transaction_type
payment_channel
field, transaction_type
will be deprecated in the future.digital:
transactions that took place online.place:
transactions that were made at a physical location.special:
transactions that relate to banks, e.g. fees or deposits.unresolved:
transactions that do not fit into the other three types.digital
, place
, special
, unresolved
logo_url
website
authorized_date
date
field will indicate the posted date, but authorized_date
will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the authorized_date
, when available, is generally preferable to use over the date
field for posted transactions, as it will generally represent the date the user actually made the transaction. Dates are returned in an ISO 8601 format ( YYYY-MM-DD
).date
authorized_datetime
YYYY-MM-DDTHH:mm:ssZ
). For posted transactions, the datetime
field will indicate the posted date, but authorized_datetime
will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the authorized_datetime
, when available, is generally preferable to use over the datetime
field for posted transactions, as it will generally represent the date the user actually made the transaction.This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.
date-time
datetime
YYYY-MM-DDTHH:mm:ssZ
). For the date that the transaction was initiated, rather than posted, see the authorized_datetime
field.This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.
date-time
payment_channel
online:
transactions that took place online.in store:
transactions that were made at a physical location.other:
transactions that relate to banks, e.g. fees or deposits.This field replaces the
transaction_type
field.online
, in store
, other
personal_finance _category
See the
taxonomy CSV file
for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the migration guide
.primary
detailed
confidence_level
VERY_HIGH
: We are more than 98% confident that this category reflects the intent of the transaction.
HIGH
: We are more than 90% confident that this category reflects the intent of the transaction.
MEDIUM
: We are moderately confident that this category reflects the intent of the transaction.
LOW
: This category may reflect the intent, but there may be other categories that are more accurate.
UNKNOWN
: We don’t know the confidence level for this category.transaction_code
This field is only populated for European institutions. For institutions in the US and Canada, this field is set to
null
.adjustment:
Bank adjustmentatm:
Cash deposit or withdrawal via an automated teller machinebank charge:
Charge or fee levied by the institutionbill payment
: Payment of a billcash:
Cash deposit or withdrawalcashback:
Cash withdrawal while making a debit card purchasecheque:
Document ordering the payment of money to another person or organizationdirect debit:
Automatic withdrawal of funds initiated by a third party at a regular intervalinterest:
Interest earned or incurredpurchase:
Purchase made with a debit or credit cardstanding order:
Payment instructed by the account holder to a third party at a regular intervaltransfer:
Transfer of money between accountsadjustment
, atm
, bank charge
, bill payment
, cash
, cashback
, cheque
, direct debit
, interest
, purchase
, standing order
, transfer
, null
personal_finance _category_icon_url
counterparties
name
entity_id
type
merchant
: a provider of goods or services for purchase
financial_institution
: a financial entity (bank, credit union, BNPL, fintech)
payment_app
: a transfer or P2P app (e.g. Zelle)
marketplace
: a marketplace (e.g DoorDash, Google Play Store)
payment_terminal
: a point-of-sale payment terminal (e.g Square, Toast)
income_source
: the payer in an income transaction (e.g., an employer, client, or government agency)merchant
, financial_institution
, payment_app
, marketplace
, payment_terminal
, income_source
website
logo_url
confidence_level
VERY_HIGH
: We recognize this counterparty and we are more than 98% confident that it is involved in this transaction.
HIGH
: We recognize this counterparty and we are more than 90% confident that it is involved in this transaction.
MEDIUM
: We are moderately confident that this counterparty was involved in this transaction, but some details may differ from our records.
LOW
: We didn’t find a matching counterparty in our records, so we are returning a cleansed name parsed out of the request description.
UNKNOWN
: We don’t know the confidence level for this counterparty.merchant_entity_id
modified
cursor
ordered by ascending last modified time.account_id
amount
iso_currency_code
or unofficial_currency_code
. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative.double
iso_currency_code
null
if unofficial_currency_code
is non-null.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
iso_currency_code
s.category
/categories/get
.All Transactions implementations are recommended to use the new
personal_finance_category
instead of category
, as it provides greater accuracy and more meaningful categorization.If the
transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.category_id
/categories/get
.All Transactions implementations are recommended to use the new
personal_finance_category
instead of category
, as it provides greater accuracy and more meaningful categorization.If the
transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.check_number
date
YYYY-MM-DD
). To receive information about the date that a posted transaction was initiated, see the authorized_date
field.date
location
address
city
region
state
.postal_code
zip
.country
lat
double
lon
double
store_number
name
If the
transactions
object was returned by a Transactions endpoint such as /transactions/sync
or /transactions/get
, this field will always appear. If the transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.merchant_name
name
field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be null
.original_description
/transactions/sync
or /transactions/get
, this field will be omitted unless the client has set options.include_original_description
to true
.payment_meta
null
.If the
transactions
object was returned by a Transactions endpoint such as /transactions/sync
or /transactions/get
, the payment_meta
key will always appear, but no data elements are guaranteed. If the transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.reference_number
ppd_id
payee
by_order_of
null
if the transaction is not a wire transfer.payer
payment_method
payment_processor
reason
pending
true
, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.pending_transaction_id
account_owner
transaction_id
transaction_id
is case sensitive.transaction_type
payment_channel
field, transaction_type
will be deprecated in the future.digital:
transactions that took place online.place:
transactions that were made at a physical location.special:
transactions that relate to banks, e.g. fees or deposits.unresolved:
transactions that do not fit into the other three types.digital
, place
, special
, unresolved
logo_url
website
authorized_date
date
field will indicate the posted date, but authorized_date
will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the authorized_date
, when available, is generally preferable to use over the date
field for posted transactions, as it will generally represent the date the user actually made the transaction. Dates are returned in an ISO 8601 format ( YYYY-MM-DD
).date
authorized_datetime
YYYY-MM-DDTHH:mm:ssZ
). For posted transactions, the datetime
field will indicate the posted date, but authorized_datetime
will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the authorized_datetime
, when available, is generally preferable to use over the datetime
field for posted transactions, as it will generally represent the date the user actually made the transaction.This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.
date-time
datetime
YYYY-MM-DDTHH:mm:ssZ
). For the date that the transaction was initiated, rather than posted, see the authorized_datetime
field.This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.
date-time
payment_channel
online:
transactions that took place online.in store:
transactions that were made at a physical location.other:
transactions that relate to banks, e.g. fees or deposits.This field replaces the
transaction_type
field.online
, in store
, other
personal_finance _category
See the
taxonomy CSV file
for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the migration guide
.primary
detailed
confidence_level
VERY_HIGH
: We are more than 98% confident that this category reflects the intent of the transaction.
HIGH
: We are more than 90% confident that this category reflects the intent of the transaction.
MEDIUM
: We are moderately confident that this category reflects the intent of the transaction.
LOW
: This category may reflect the intent, but there may be other categories that are more accurate.
UNKNOWN
: We don’t know the confidence level for this category.transaction_code
This field is only populated for European institutions. For institutions in the US and Canada, this field is set to
null
.adjustment:
Bank adjustmentatm:
Cash deposit or withdrawal via an automated teller machinebank charge:
Charge or fee levied by the institutionbill payment
: Payment of a billcash:
Cash deposit or withdrawalcashback:
Cash withdrawal while making a debit card purchasecheque:
Document ordering the payment of money to another person or organizationdirect debit:
Automatic withdrawal of funds initiated by a third party at a regular intervalinterest:
Interest earned or incurredpurchase:
Purchase made with a debit or credit cardstanding order:
Payment instructed by the account holder to a third party at a regular intervaltransfer:
Transfer of money between accountsadjustment
, atm
, bank charge
, bill payment
, cash
, cashback
, cheque
, direct debit
, interest
, purchase
, standing order
, transfer
, null
personal_finance _category_icon_url
counterparties
name
entity_id
type
merchant
: a provider of goods or services for purchase
financial_institution
: a financial entity (bank, credit union, BNPL, fintech)
payment_app
: a transfer or P2P app (e.g. Zelle)
marketplace
: a marketplace (e.g DoorDash, Google Play Store)
payment_terminal
: a point-of-sale payment terminal (e.g Square, Toast)
income_source
: the payer in an income transaction (e.g., an employer, client, or government agency)merchant
, financial_institution
, payment_app
, marketplace
, payment_terminal
, income_source
website
logo_url
confidence_level
VERY_HIGH
: We recognize this counterparty and we are more than 98% confident that it is involved in this transaction.
HIGH
: We recognize this counterparty and we are more than 90% confident that it is involved in this transaction.
MEDIUM
: We are moderately confident that this counterparty was involved in this transaction, but some details may differ from our records.
LOW
: We didn’t find a matching counterparty in our records, so we are returning a cleansed name parsed out of the request description.
UNKNOWN
: We don’t know the confidence level for this counterparty.merchant_entity_id
removed
cursor
ordered by ascending last modified time.transaction_id
next_cursor
has_more
being false
) will be valid for at least 1 year. This cursor should be persisted for later calls. If transactions are not yet available, this will be an empty string.has_more
cursor
set to next_cursor
. If has_more
is true, it’s important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.request_id
1{2 "added": [3 {4 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",5 "account_owner": null,6 "amount": 72.1,7 "iso_currency_code": "USD",8 "unofficial_currency_code": null,9 "category": [10 "Shops",11 "Supermarkets and Groceries"12 ],13 "category_id": "19046000",14 "check_number": null,15 "counterparties": [16 {17 "name": "Walmart",18 "type": "merchant",19 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",20 "website": "walmart.com",21 "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",22 "confidence_level": "VERY_HIGH"23 }24 ],25 "date": "2023-09-24",26 "datetime": "2023-09-24T11:01:01Z",27 "authorized_date": "2023-09-22",28 "authorized_datetime": "2023-09-22T10:34:50Z",29 "location": {30 "address": "13425 Community Rd",31 "city": "Poway",32 "region": "CA",33 "postal_code": "92064",34 "country": "US",35 "lat": 32.959068,36 "lon": -117.037666,37 "store_number": "1700"38 },39 "name": "PURCHASE WM SUPERCENTER #1700",40 "merchant_name": "Walmart",41 "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",42 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",43 "website": "walmart.com",44 "payment_meta": {45 "by_order_of": null,46 "payee": null,47 "payer": null,48 "payment_method": null,49 "payment_processor": null,50 "ppd_id": null,51 "reason": null,52 "reference_number": null53 },54 "payment_channel": "in store",55 "pending": false,56 "pending_transaction_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nc",57 "personal_finance_category": {58 "primary": "GENERAL_MERCHANDISE",59 "detailed": "GENERAL_MERCHANDISE_SUPERSTORES",60 "confidence_level": "VERY_HIGH"61 },62 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png",63 "transaction_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDje",64 "transaction_code": null,65 "transaction_type": "place"66 }67 ],68 "modified": [69 {70 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",71 "account_owner": null,72 "amount": 28.34,73 "iso_currency_code": "USD",74 "unofficial_currency_code": null,75 "category": [76 "Food and Drink",77 "Restaurants",78 "Fast Food"79 ],80 "category_id": "13005032",81 "check_number": null,82 "counterparties": [83 {84 "name": "DoorDash",85 "type": "marketplace",86 "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png",87 "website": "doordash.com",88 "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm",89 "confidence_level": "HIGH"90 },91 {92 "name": "Burger King",93 "type": "merchant",94 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",95 "website": "burgerking.com",96 "entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",97 "confidence_level": "VERY_HIGH"98 }99 ],100 "date": "2023-09-28",101 "datetime": "2023-09-28T15:10:09Z",102 "authorized_date": "2023-09-27",103 "authorized_datetime": "2023-09-27T08:01:58Z",104 "location": {105 "address": null,106 "city": null,107 "region": null,108 "postal_code": null,109 "country": null,110 "lat": null,111 "lon": null,112 "store_number": null113 },114 "name": "Dd Doordash Burgerkin",115 "merchant_name": "Burger King",116 "merchant_entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",117 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",118 "website": "burgerking.com",119 "payment_meta": {120 "by_order_of": null,121 "payee": null,122 "payer": null,123 "payment_method": null,124 "payment_processor": null,125 "ppd_id": null,126 "reason": null,127 "reference_number": null128 },129 "payment_channel": "online",130 "pending": true,131 "pending_transaction_id": null,132 "personal_finance_category": {133 "primary": "FOOD_AND_DRINK",134 "detailed": "FOOD_AND_DRINK_FAST_FOOD",135 "confidence_level": "VERY_HIGH"136 },137 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png",138 "transaction_id": "yhnUVvtcGGcCKU0bcz8PDQr5ZUxUXebUvbKC0",139 "transaction_code": null,140 "transaction_type": "digital"141 }142 ],143 "removed": [144 {145 "transaction_id": "CmdQTNgems8BT1B7ibkoUXVPyAeehT3Tmzk0l"146 }147 ],148 "next_cursor": "tVUUL15lYQN5rBnfDIc1I8xudpGdIlw9nsgeXWvhOfkECvUeR663i3Dt1uf/94S8ASkitgLcIiOSqNwzzp+bh89kirazha5vuZHBb2ZA5NtCDkkV",149 "has_more": false,150 "request_id": "45QSn"151}
Was this helpful?
/processor/transactions/get
Get transaction data
The /processor/transactions/get
endpoint allows developers to receive user-authorized transaction data for credit, depository, and some loan-type accounts (only those with account subtype student
; coverage may be limited). Transaction data is standardized across financial institutions, and in many cases transactions are linked to a clean name, entity type, location, and category. Similarly, account data is standardized and returned with a clean name, number, balance, and other meta information where available.
Transactions are returned in reverse-chronological order, and the sequence of transaction ordering is stable and will not shift. Transactions are not immutable and can also be removed altogether by the institution; a removed transaction will no longer appear in /processor/transactions/get
. For more details, see Pending and posted transactions.
Due to the potentially large number of transactions associated with a processor token, results are paginated. Manipulate the count
and offset
parameters in conjunction with the total_transactions
response body field to fetch all available transactions.
Data returned by /processor/transactions/get
will be the data available for the processor token as of the most recent successful check for new transactions. Plaid typically checks for new data multiple times a day, but these checks may occur less frequently, such as once a day, depending on the institution. To force Plaid to check for new transactions, you can use the /processor/transactions/refresh
endpoint.
Note that data may not be immediately available to /processor/transactions/get
. Plaid will begin to prepare transactions data upon Item link, if Link was initialized with transactions
, or upon the first call to /processor/transactions/get
, if it wasn't. If no transaction history is ready when /processor/transactions/get
is called, it will return a PRODUCT_NOT_READY
error.
To receive Transactions webhooks for a processor token, set its webhook URL via the /processor/token/webhook/update
endpoint.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.options
options
must not be null
.count
100
1
500
false
offset
0
0
include_original _description
false
processor_token
processor-<environment>-<identifier>
secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.start_date
date
end_date
date
1const request: ProcessorTransactionsGetRequest = {2 processor_token: processorToken,3 start_date: '2018-01-01',4 end_date: '2020-02-01'5};6try {7 const response = await client.processorTransactionsGet(request);8 let transactions = response.data.transactions;9 const total_transactions = response.data.total_transactions;10 // Manipulate the offset parameter to paginate11 // transactions and retrieve all available data12 while (transactions.length < total_transactions) {13 const paginatedRequest: ProcessorTransactionsGetRequest = {14 processor_token: processorToken,15 start_date: '2018-01-01',16 end_date: '2020-02-01',17 options: {18 offset: transactions.length,19 },20 };21 const paginatedResponse = await client.processorTransactionsGet(paginatedRequest);22 transactions = transactions.concat(23 paginatedResponse.data.transactions,24 );25 }26} catch((err) => {27 // handle error28}
Response fields and example
account
account_id
account_id
will be assigned to the account.The
account_id
can also change if the access_token
is deleted and the same credentials that were used to generate that access_token
are used to generate a new access_token
on a later date. In that case, the new account_id
will be different from the old account_id
.If an account with a specific
account_id
disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API.Like all Plaid identifiers, the
account_id
is case sensitive.balances
/accounts/balance/get
.available
For
credit
-type accounts, the available
balance typically equals the limit
less the current
balance, less any pending outflows plus any pending inflows.For
depository
-type accounts, the available
balance typically equals the current
balance less any pending outflows plus any pending inflows. For depository
-type accounts, the available
balance does not include the overdraft limit.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the available
balance is the total cash available to withdraw as presented by the institution.Note that not all institutions calculate the
available
balance. In the event that available
balance is unavailable, Plaid will return an available
balance value of null
.Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by
/accounts/balance/get
.If
current
is null
this field is guaranteed not to be null
.double
current
For
credit
-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder.For
loan
-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (ins_116944
). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest.For
investment
-type accounts (or brokerage
-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution.Note that balance information may be cached unless the value was returned by
/accounts/balance/get
; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the available
balance as provided by /accounts/balance/get
.When returned by
/accounts/balance/get
, this field may be null
. When this happens, available
is guaranteed not to be null
.double
limit
credit
-type accounts, this represents the credit limit.For
depository
-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.In North America, this field is typically only available for
credit
-type accounts.double
iso_currency_code
unofficial_currency_code
is non-null.unofficial_currency _code
iso_currency_code
is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
unofficial_currency_code
s.last_updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the oldest acceptable balance when making a request to /accounts/balance/get
.This field is only used and expected when the institution is
ins_128026
(Capital One) and the Item contains one or more accounts with a non-depository account type, in which case a value must be provided or an INVALID_REQUEST
error with the code of INVALID_FIELD
will be returned. For Capital One depository accounts as well as all other account types on all other institutions, this field is ignored. See account type schema for a full list of account types.If the balance that is pulled is older than the given timestamp for Items with this field required, an
INVALID_REQUEST
error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE
will be returned with the most recent timestamp for the requested account contained in the response.date-time
mask
name
official_name
type
investment:
Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage
instead.credit:
Credit carddepository:
Depository accountloan:
Loan accountother:
Non-specified account typeSee the Account type schema for a full listing of account types and corresponding subtypes.
investment
, credit
, depository
, loan
, brokerage
, other
subtype
401a
, 401k
, 403B
, 457b
, 529
, brokerage
, cash isa
, crypto exchange
, education savings account
, ebt
, fixed annuity
, gic
, health reimbursement arrangement
, hsa
, isa
, ira
, lif
, life insurance
, lira
, lrif
, lrsp
, non-custodial wallet
, non-taxable brokerage account
, other
, other insurance
, other annuity
, prif
, rdsp
, resp
, rlif
, rrif
, pension
, profit sharing plan
, retirement
, roth
, roth 401k
, rrsp
, sep ira
, simple ira
, sipp
, stock plan
, thrift savings plan
, tfsa
, trust
, ugma
, utma
, variable annuity
, credit card
, paypal
, cd
, checking
, savings
, money market
, prepaid
, auto
, business
, commercial
, construction
, consumer
, home equity
, loan
, mortgage
, overdraft
, line of credit
, student
, cash management
, keogh
, mutual fund
, recurring
, rewards
, safe deposit
, sarsep
, payroll
, null
verification_status
pending_automatic_verification
: The Item is pending automatic verificationpending_manual_verification
: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit.automatically_verified
: The Item has successfully been automatically verified manually_verified
: The Item has successfully been manually verifiedverification_expired
: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link.verification_failed
: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link.database_matched
: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information.database_insights_pass
: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_pass_with_caution
: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.database_insights_fail
: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information.automatically_verified
, pending_automatic_verification
, pending_manual_verification
, manually_verified
, verification_expired
, verification_failed
, database_matched
, database_insights_pass
, database_insights_pass_with_caution
, database_insights_fail
persistent_account_id
transactions
count
parameter.account_id
amount
iso_currency_code
or unofficial_currency_code
. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative.double
iso_currency_code
null
if unofficial_currency_code
is non-null.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.See the currency code schema for a full listing of supported
iso_currency_code
s.category
/categories/get
.All Transactions implementations are recommended to use the new
personal_finance_category
instead of category
, as it provides greater accuracy and more meaningful categorization.If the
transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.category_id
/categories/get
.All Transactions implementations are recommended to use the new
personal_finance_category
instead of category
, as it provides greater accuracy and more meaningful categorization.If the
transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.check_number
date
YYYY-MM-DD
). To receive information about the date that a posted transaction was initiated, see the authorized_date
field.date
location
address
city
region
state
.postal_code
zip
.country
lat
double
lon
double
store_number
name
If the
transactions
object was returned by a Transactions endpoint such as /transactions/sync
or /transactions/get
, this field will always appear. If the transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.merchant_name
name
field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be null
.original_description
/transactions/sync
or /transactions/get
, this field will be omitted unless the client has set options.include_original_description
to true
.payment_meta
null
.If the
transactions
object was returned by a Transactions endpoint such as /transactions/sync
or /transactions/get
, the payment_meta
key will always appear, but no data elements are guaranteed. If the transactions
object was returned by an Assets endpoint such as /asset_report/get/
or /asset_report/pdf/get
, this field will only appear in an Asset Report with Insights.reference_number
ppd_id
payee
by_order_of
null
if the transaction is not a wire transfer.payer
payment_method
payment_processor
reason
pending
true
, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.pending_transaction_id
account_owner
transaction_id
transaction_id
is case sensitive.transaction_type
payment_channel
field, transaction_type
will be deprecated in the future.digital:
transactions that took place online.place:
transactions that were made at a physical location.special:
transactions that relate to banks, e.g. fees or deposits.unresolved:
transactions that do not fit into the other three types.digital
, place
, special
, unresolved
logo_url
website
authorized_date
date
field will indicate the posted date, but authorized_date
will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the authorized_date
, when available, is generally preferable to use over the date
field for posted transactions, as it will generally represent the date the user actually made the transaction. Dates are returned in an ISO 8601 format ( YYYY-MM-DD
).date
authorized_datetime
YYYY-MM-DDTHH:mm:ssZ
). For posted transactions, the datetime
field will indicate the posted date, but authorized_datetime
will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the authorized_datetime
, when available, is generally preferable to use over the datetime
field for posted transactions, as it will generally represent the date the user actually made the transaction.This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.
date-time
datetime
YYYY-MM-DDTHH:mm:ssZ
). For the date that the transaction was initiated, rather than posted, see the authorized_datetime
field.This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.
date-time
payment_channel
online:
transactions that took place online.in store:
transactions that were made at a physical location.other:
transactions that relate to banks, e.g. fees or deposits.This field replaces the
transaction_type
field.online
, in store
, other
personal_finance _category
See the
taxonomy CSV file
for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the migration guide
.primary
detailed
confidence_level
VERY_HIGH
: We are more than 98% confident that this category reflects the intent of the transaction.
HIGH
: We are more than 90% confident that this category reflects the intent of the transaction.
MEDIUM
: We are moderately confident that this category reflects the intent of the transaction.
LOW
: This category may reflect the intent, but there may be other categories that are more accurate.
UNKNOWN
: We don’t know the confidence level for this category.transaction_code
This field is only populated for European institutions. For institutions in the US and Canada, this field is set to
null
.adjustment:
Bank adjustmentatm:
Cash deposit or withdrawal via an automated teller machinebank charge:
Charge or fee levied by the institutionbill payment
: Payment of a billcash:
Cash deposit or withdrawalcashback:
Cash withdrawal while making a debit card purchasecheque:
Document ordering the payment of money to another person or organizationdirect debit:
Automatic withdrawal of funds initiated by a third party at a regular intervalinterest:
Interest earned or incurredpurchase:
Purchase made with a debit or credit cardstanding order:
Payment instructed by the account holder to a third party at a regular intervaltransfer:
Transfer of money between accountsadjustment
, atm
, bank charge
, bill payment
, cash
, cashback
, cheque
, direct debit
, interest
, purchase
, standing order
, transfer
, null
personal_finance _category_icon_url
counterparties
name
entity_id
type
merchant
: a provider of goods or services for purchase
financial_institution
: a financial entity (bank, credit union, BNPL, fintech)
payment_app
: a transfer or P2P app (e.g. Zelle)
marketplace
: a marketplace (e.g DoorDash, Google Play Store)
payment_terminal
: a point-of-sale payment terminal (e.g Square, Toast)
income_source
: the payer in an income transaction (e.g., an employer, client, or government agency)merchant
, financial_institution
, payment_app
, marketplace
, payment_terminal
, income_source
website
logo_url
confidence_level
VERY_HIGH
: We recognize this counterparty and we are more than 98% confident that it is involved in this transaction.
HIGH
: We recognize this counterparty and we are more than 90% confident that it is involved in this transaction.
MEDIUM
: We are moderately confident that this counterparty was involved in this transaction, but some details may differ from our records.
LOW
: We didn’t find a matching counterparty in our records, so we are returning a cleansed name parsed out of the request description.
UNKNOWN
: We don’t know the confidence level for this counterparty.merchant_entity_id
total_transactions
total_transactions
is larger than the size of the transactions
array, more transactions are available and can be fetched via manipulating the offset
parameter.request_id
1{2 "account": {3 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",4 "balances": {5 "available": 110.94,6 "current": 110.94,7 "iso_currency_code": "USD",8 "limit": null,9 "unofficial_currency_code": null10 },11 "mask": "0000",12 "name": "Plaid Checking",13 "official_name": "Plaid Gold Standard 0% Interest Checking",14 "subtype": "checking",15 "type": "depository"16 },17 "transactions": [18 {19 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",20 "account_owner": null,21 "amount": 28.34,22 "iso_currency_code": "USD",23 "unofficial_currency_code": null,24 "category": [25 "Food and Drink",26 "Restaurants",27 "Fast Food"28 ],29 "category_id": "13005032",30 "check_number": null,31 "counterparties": [32 {33 "name": "DoorDash",34 "type": "marketplace",35 "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png",36 "website": "doordash.com",37 "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm",38 "confidence_level": "HIGH"39 },40 {41 "name": "Burger King",42 "type": "merchant",43 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",44 "website": "burgerking.com",45 "entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",46 "confidence_level": "VERY_HIGH"47 }48 ],49 "date": "2023-09-28",50 "datetime": "2023-09-28T15:10:09Z",51 "authorized_date": "2023-09-27",52 "authorized_datetime": "2023-09-27T08:01:58Z",53 "location": {54 "address": null,55 "city": null,56 "region": null,57 "postal_code": null,58 "country": null,59 "lat": null,60 "lon": null,61 "store_number": null62 },63 "name": "Dd Doordash Burgerkin",64 "merchant_name": "Burger King",65 "merchant_entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",66 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",67 "website": "burgerking.com",68 "payment_meta": {69 "by_order_of": null,70 "payee": null,71 "payer": null,72 "payment_method": null,73 "payment_processor": null,74 "ppd_id": null,75 "reason": null,76 "reference_number": null77 },78 "payment_channel": "online",79 "pending": true,80 "pending_transaction_id": null,81 "personal_finance_category": {82 "primary": "FOOD_AND_DRINK",83 "detailed": "FOOD_AND_DRINK_FAST_FOOD",84 "confidence_level": "VERY_HIGH"85 },86 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png",87 "transaction_id": "yhnUVvtcGGcCKU0bcz8PDQr5ZUxUXebUvbKC0",88 "transaction_code": null,89 "transaction_type": "digital"90 },91 {92 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",93 "account_owner": null,94 "amount": 72.1,95 "iso_currency_code": "USD",96 "unofficial_currency_code": null,97 "category": [98 "Shops",99 "Supermarkets and Groceries"100 ],101 "category_id": "19046000",102 "check_number": null,103 "counterparties": [104 {105 "name": "Walmart",106 "type": "merchant",107 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",108 "website": "walmart.com",109 "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",110 "confidence_level": "VERY_HIGH"111 }112 ],113 "date": "2023-09-24",114 "datetime": "2023-09-24T11:01:01Z",115 "authorized_date": "2023-09-22",116 "authorized_datetime": "2023-09-22T10:34:50Z",117 "location": {118 "address": "13425 Community Rd",119 "city": "Poway",120 "region": "CA",121 "postal_code": "92064",122 "country": "US",123 "lat": 32.959068,124 "lon": -117.037666,125 "store_number": "1700"126 },127 "name": "PURCHASE WM SUPERCENTER #1700",128 "merchant_name": "Walmart",129 "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",130 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",131 "website": "walmart.com",132 "payment_meta": {133 "by_order_of": null,134 "payee": null,135 "payer": null,136 "payment_method": null,137 "payment_processor": null,138 "ppd_id": null,139 "reason": null,140 "reference_number": null141 },142 "payment_channel": "in store",143 "pending": false,144 "pending_transaction_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nc",145 "personal_finance_category": {146 "primary": "GENERAL_MERCHANDISE",147 "detailed": "GENERAL_MERCHANDISE_SUPERSTORES",148 "confidence_level": "VERY_HIGH"149 },150 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png",151 "transaction_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDje",152 "transaction_code": null,153 "transaction_type": "place"154 }155 ],156 "total_transactions": 1,157 "request_id": "Wvhy9PZHQLV8njG"158}
Was this helpful?
/processor/transactions/recurring/get
Fetch recurring transaction streams
The /processor/transactions/recurring/get
endpoint allows developers to receive a summary of the recurring outflow and inflow streams (expenses and deposits) from a user’s checking, savings or credit card accounts. Additionally, Plaid provides key insights about each recurring stream including the category, merchant, last amount, and more. Developers can use these insights to build tools and experiences that help their users better manage cash flow, monitor subscriptions, reduce spend, and stay on track with bill payments.
This endpoint is offered as an add-on to Transactions. To request access to this endpoint, submit a product access request or contact your Plaid account manager.
This endpoint can only be called on a processor token that has already been initialized with Transactions (either during Link, by specifying it in /link/token/create
; or after Link, by calling /processor/transactions/get
or /processor/transactions/sync
). Once all historical transactions have been fetched, call /processor/transactions/recurring/get
to receive the Recurring Transactions streams and subscribe to the RECURRING_TRANSACTIONS_UPDATE
webhook. To know when historical transactions have been fetched, if you are using /processor/transactions/sync
listen for the SYNC_UPDATES_AVAILABLE
webhook and check that the historical_update_complete
field in the payload is true
. If using /processor/transactions/get
, listen for the HISTORICAL_UPDATE
webhook.
After the initial call, you can call /processor/transactions/recurring/get
endpoint at any point in the future to retrieve the latest summary of recurring streams. Listen to the RECURRING_TRANSACTIONS_UPDATE
webhook to be notified when new updates are available.
To receive Transactions webhooks for a processor token, set its webhook URL via the /processor/token/webhook/update
endpoint.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.processor_token
processor-<environment>-<identifier>
secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.1const request: ProcessorTransactionsGetRequest = {2 processor_token: processorToken3};4try {5 const response = await client.processorTransactionsRecurringGet(request);6 let inflowStreams = response.data.inflowStreams;7 let outflowStreams = response.data.outflowStreams;8 }9} catch((err) => {10 // handle error11}
Response fields and example
inflow_streams
account_id
stream_id
category
All implementations are encouraged to use the new
personal_finance_category
instead of category
. personal_finance_category
provides more meaningful categorization and greater accuracy.category_id
All implementations are encouraged to use the new
personal_finance_category
instead of category
. personal_finance_category
provides more meaningful categorization and greater accuracy.description
merchant_name
first_date
date
last_date
date
frequency
WEEKLY
: Assigned to a transaction stream that occurs approximately every week.BIWEEKLY
: Assigned to a transaction stream that occurs approximately every 2 weeks.SEMI_MONTHLY
: Assigned to a transaction stream that occurs approximately twice per month. This frequency is typically seen for inflow transaction streams.MONTHLY
: Assigned to a transaction stream that occurs approximately every month.ANNUALLY
: Assigned to a transaction stream that occurs approximately every year.UNKNOWN
: Assigned to a transaction stream that does not fit any of the pre-defined frequencies.UNKNOWN
, WEEKLY
, BIWEEKLY
, SEMI_MONTHLY
, MONTHLY
, ANNUALLY
transaction_ids
average_amount
amount
double
iso_currency_code
null
if unofficial_currency_code
is non-null
.See the currency code schema for a full listing of supported
iso_currency_code
s.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.last_amount
amount
double
iso_currency_code
null
if unofficial_currency_code
is non-null
.See the currency code schema for a full listing of supported
iso_currency_code
s.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.is_active
status
MATURE
: A MATURE
recurring stream should have at least 3 transactions and happen on a regular cadence (For Annual recurring stream, we will mark it MATURE
after 2 instances).EARLY_DETECTION
: When a recurring transaction first appears in the transaction history and before it fulfills the requirement of a mature stream, the status will be EARLY_DETECTION
.TOMBSTONED
: A stream that was previously in the EARLY_DETECTION
status will move to the TOMBSTONED
status when no further transactions were found at the next expected date.UNKNOWN
: A stream is assigned an UNKNOWN
status when none of the other statuses are applicable.UNKNOWN
, MATURE
, EARLY_DETECTION
, TOMBSTONED
personal_finance _category
See the
taxonomy CSV file
for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the migration guide
.primary
detailed
confidence_level
VERY_HIGH
: We are more than 98% confident that this category reflects the intent of the transaction.
HIGH
: We are more than 90% confident that this category reflects the intent of the transaction.
MEDIUM
: We are moderately confident that this category reflects the intent of the transaction.
LOW
: This category may reflect the intent, but there may be other categories that are more accurate.
UNKNOWN
: We don’t know the confidence level for this category.is_user_modified
true
if the stream has been modified by request to a /transactions/recurring/streams
endpoint. It will be false
for all other streams.last_user_modified _datetime
is_user_modified
is true
.date-time
outflow_streams
account_id
stream_id
category
All implementations are encouraged to use the new
personal_finance_category
instead of category
. personal_finance_category
provides more meaningful categorization and greater accuracy.category_id
All implementations are encouraged to use the new
personal_finance_category
instead of category
. personal_finance_category
provides more meaningful categorization and greater accuracy.description
merchant_name
first_date
date
last_date
date
frequency
WEEKLY
: Assigned to a transaction stream that occurs approximately every week.BIWEEKLY
: Assigned to a transaction stream that occurs approximately every 2 weeks.SEMI_MONTHLY
: Assigned to a transaction stream that occurs approximately twice per month. This frequency is typically seen for inflow transaction streams.MONTHLY
: Assigned to a transaction stream that occurs approximately every month.ANNUALLY
: Assigned to a transaction stream that occurs approximately every year.UNKNOWN
: Assigned to a transaction stream that does not fit any of the pre-defined frequencies.UNKNOWN
, WEEKLY
, BIWEEKLY
, SEMI_MONTHLY
, MONTHLY
, ANNUALLY
transaction_ids
average_amount
amount
double
iso_currency_code
null
if unofficial_currency_code
is non-null
.See the currency code schema for a full listing of supported
iso_currency_code
s.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.last_amount
amount
double
iso_currency_code
null
if unofficial_currency_code
is non-null
.See the currency code schema for a full listing of supported
iso_currency_code
s.unofficial_currency _code
null
if iso_currency_code
is non-null
. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.is_active
status
MATURE
: A MATURE
recurring stream should have at least 3 transactions and happen on a regular cadence (For Annual recurring stream, we will mark it MATURE
after 2 instances).EARLY_DETECTION
: When a recurring transaction first appears in the transaction history and before it fulfills the requirement of a mature stream, the status will be EARLY_DETECTION
.TOMBSTONED
: A stream that was previously in the EARLY_DETECTION
status will move to the TOMBSTONED
status when no further transactions were found at the next expected date.UNKNOWN
: A stream is assigned an UNKNOWN
status when none of the other statuses are applicable.UNKNOWN
, MATURE
, EARLY_DETECTION
, TOMBSTONED
personal_finance _category
See the
taxonomy CSV file
for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the migration guide
.primary
detailed
confidence_level
VERY_HIGH
: We are more than 98% confident that this category reflects the intent of the transaction.
HIGH
: We are more than 90% confident that this category reflects the intent of the transaction.
MEDIUM
: We are moderately confident that this category reflects the intent of the transaction.
LOW
: This category may reflect the intent, but there may be other categories that are more accurate.
UNKNOWN
: We don’t know the confidence level for this category.is_user_modified
true
if the stream has been modified by request to a /transactions/recurring/streams
endpoint. It will be false
for all other streams.last_user_modified _datetime
is_user_modified
is true
.date-time
updated_datetime
YYYY-MM-DDTHH:mm:ssZ
) indicating the last time transaction streams for the given account were updated ondate-time
request_id
1{2 "updated_datetime": "2022-05-01T00:00:00Z",3 "inflow_streams": [4 {5 "account_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDje",6 "stream_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nc",7 "category": [8 "Transfer",9 "Payroll"10 ],11 "category_id": "21009000",12 "description": "Platypus Payroll",13 "merchant_name": null,14 "personal_finance_category": {15 "primary": "INCOME",16 "detailed": "INCOME_WAGES",17 "confidence_level": "UNKNOWN"18 },19 "first_date": "2022-02-28",20 "last_date": "2022-04-30",21 "frequency": "SEMI_MONTHLY",22 "transaction_ids": [23 "nkeaNrDGrhdo6c4qZWDA8ekuIPuJ4Avg5nKfw",24 "EfC5ekksdy30KuNzad2tQupW8WIPwvjXGbGHL",25 "ozfvj3FFgp6frbXKJGitsDzck5eWQH7zOJBYd",26 "QvdDE8AqVWo3bkBZ7WvCd7LskxVix8Q74iMoK",27 "uQozFPfMzibBouS9h9tz4CsyvFll17jKLdPAF"28 ],29 "average_amount": {30 "amount": -800,31 "iso_currency_code": "USD",32 "unofficial_currency_code": null33 },34 "last_amount": {35 "amount": -1000,36 "iso_currency_code": "USD",37 "unofficial_currency_code": null38 },39 "is_active": true,40 "status": "MATURE",41 "is_user_modified": true,42 "last_user_modified_datetime": "2023-01-19T10:34:50Z"43 }44 ],45 "outflow_streams": [46 {47 "account_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDff",48 "stream_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nd",49 "category": [50 "Service",51 "Utilities",52 "Electric"53 ],54 "category_id": "18068005",55 "description": "ConEd Bill Payment",56 "merchant_name": "ConEd",57 "personal_finance_category": {58 "primary": "RENT_AND_UTILITIES",59 "detailed": "RENT_AND_UTILITIES_GAS_AND_ELECTRICITY",60 "confidence_level": "UNKNOWN"61 },62 "first_date": "2022-02-04",63 "last_date": "2022-05-02",64 "frequency": "MONTHLY",65 "transaction_ids": [66 "yhnUVvtcGGcCKU0bcz8PDQr5ZUxUXebUvbKC0",67 "HPDnUVgI5Pa0YQSl0rxwYRwVXeLyJXTWDAvpR",68 "jEPoSfF8xzMClE9Ohj1he91QnvYoSdwg7IT8L",69 "CmdQTNgems8BT1B7ibkoUXVPyAeehT3Tmzk0l"70 ],71 "average_amount": {72 "amount": 85,73 "iso_currency_code": "USD",74 "unofficial_currency_code": null75 },76 "last_amount": {77 "amount": 100,78 "iso_currency_code": "USD",79 "unofficial_currency_code": null80 },81 "is_active": true,82 "status": "MATURE",83 "is_user_modified": false84 },85 {86 "account_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDff",87 "stream_id": "SrBNJZDuUMweodmPmSOeOImwsWt53ZXfJQAfC",88 "category": [89 "Shops",90 "Warehouses and Wholesale Stores"91 ],92 "category_id": "19051000",93 "description": "Costco Annual Membership",94 "merchant_name": "Costco",95 "personal_finance_category": {96 "primary": "GENERAL_MERCHANDISE",97 "detailed": "GENERAL_MERCHANDISE_SUPERSTORES",98 "confidence_level": "UNKNOWN"99 },100 "first_date": "2022-01-23",101 "last_date": "2023-01-22",102 "frequency": "ANNUALLY",103 "transaction_ids": [104 "yqEBJ72cS4jFwcpxJcDuQr94oAQ1R1lMC33D4",105 "Kz5Hm3cZCgpn4tMEKUGAGD6kAcxMBsEZDSwJJ"106 ],107 "average_amount": {108 "amount": 120,109 "iso_currency_code": "USD",110 "unofficial_currency_code": null111 },112 "last_amount": {113 "amount": 120,114 "iso_currency_code": "USD",115 "unofficial_currency_code": null116 },117 "is_active": true,118 "status": "MATURE",119 "is_user_modified": true,120 "last_user_modified_datetime": "2023-01-19T10:34:50Z"121 }122 ],123 "request_id": "tbFyCEqkU775ZGG"124}
Was this helpful?
/processor/transactions/refresh
Refresh transaction data
/processor/transactions/refresh
is an optional endpoint for users of the Transactions product. It initiates an on-demand extraction to fetch the newest transactions for a processor token. This on-demand extraction takes place in addition to the periodic extractions that automatically occur one or more times per day for any Transactions-enabled processor token. If changes to transactions are discovered after calling /processor/transactions/refresh
, Plaid will fire a webhook: for /transactions/sync
users, SYNC_UPDATES_AVAILABLE
will be fired if there are any transactions updated, added, or removed. For users of both /processor/transactions/sync
and /processor/transactions/get
, TRANSACTIONS_REMOVED
will be fired if any removed transactions are detected, and DEFAULT_UPDATE
will be fired if any new transactions are detected. New transactions can be fetched by calling /processor/transactions/get
or /processor/transactions/sync
. Note that the /processor/transactions/refresh
endpoint is not supported for Capital One (ins_128026
) and will result in a PRODUCTS_NOT_SUPPORTED
error if called on a processor token from that institution.
As this endpoint triggers a synchronous request for fresh data, latency may be higher than for other Plaid endpoints (typically less than 10 seconds, but occasionally up to 30 seconds or more); if you encounter errors, you may find it necessary to adjust your timeout period when making requests./processor/transactions/refresh
is offered as an add-on to Transactions and has a separate fee model. To request access to this endpoint, submit a product access request or contact your Plaid account manager.
Request fields and example
client_id
client_id
. The client_id
is required and may be provided either in the PLAID-CLIENT-ID
header or as part of a request body.processor_token
processor-<environment>-<identifier>
secret
secret
. The secret
is required and may be provided either in the PLAID-SECRET
header or as part of a request body.1const request: ProcessorTransactionsRefreshRequest = {2 processor_token: processorToken,3};4try {5 await plaidClient.processorTransactionsRefresh(request);6} catch (error) {7 // handle error8}
Response fields and example
request_id
1{2 "request_id": "1vwmF5TBQwiqfwP"3}
Was this helpful?
Processor webhooks
WEBHOOK_UPDATE_ACKNOWLEDGED
This webhook is only sent to Plaid processor partners.
Fired when a processor updates the webhook URL for a processor token via /processor/token/webhook/update
.
webhook_type
PROCESSOR_TOKEN
webhook_code
WEBHOOK_UPDATE_ACKNOWLEDGED
error
error_type
. In general, 200 HTTP codes correspond to success, 40X codes are for developer- or user-related failures, and 50X codes are for Plaid-related issues. An Item with a non-null
error object will only be part of an API response when calling /item/get
to view Item status. Otherwise, error fields will be null
if no error has occurred; if an error has occurred, an error code will be returned instead.error_type
INVALID_REQUEST
, INVALID_RESULT
, INVALID_INPUT
, INSTITUTION_ERROR
, RATE_LIMIT_EXCEEDED
, API_ERROR
, ITEM_ERROR
, ASSET_REPORT_ERROR
, RECAPTCHA_ERROR
, OAUTH_ERROR
, PAYMENT_ERROR
, BANK_TRANSFER_ERROR
, INCOME_VERIFICATION_ERROR
, MICRODEPOSITS_ERROR
error_code
error_message
display_message
null
if the error is not related to user action.This may change over time and is not safe for programmatic use.
request_id
causes
causes
will return an array of errors containing a breakdown of these errors on the individual Item level, if any can be identified.causes
will only be provided for the error_type
ASSET_REPORT_ERROR
. causes
will also not be populated inside an error nested within a warning
object.status
documentation_url
suggested_action
account_id
new_webhook_url
environment
development
, sandbox
, production
1{2 "webhook_type": "PROCESSOR_TOKEN",3 "webhook_code": "WEBHOOK_UPDATE_ACKNOWLEDGED",4 "account_id": "dVzbVMLjrxTnLjX4G66XUp5GLklm4oiZy88yK",5 "new_webhook_url": "https://www.example.com",6 "error": null,7 "environment": "production"8}