Plaid logo
Docs
ALL DOCS

API

  • Overview
  • Libraries
  • API versioning
  • Postman Collection
  • Webhooks
Payments and Funding
  • Auth
  • Balance
  • Identity
  • Signal
  • Transfer
  • Investments Move
  • Payment Initiation
  • Virtual Accounts
Financial Insights
  • Transactions
  • Investments
  • Liabilities
  • Enrich
KYC/AML and anti-fraud
  • Look up Dashboard users
  • Identity Verification
  • Protect
  • Monitor
  • Beacon (beta)
Instant Onboarding
  • Layer
Credit and Underwriting
  • Consumer Report (by Plaid Check)
  • Assets
  • Statements
  • Income
Fundamentals
  • Items
  • Accounts
  • Institutions
  • Sandbox
  • Link
  • Users
  • Consent
  • Network
  • OAuth
Partnerships
  • Processor tokens
  • Processor partners
  • Reseller partners
Plaid logo
Docs
Close search modal
Ask Bill!
Ask Bill!
Hi! I'm Bill! You can ask me all about the Plaid API. Try asking questions like:
    Note: Bill isn't perfect. He's just a robot platypus that reads our docs for fun. You should treat his answers with the same healthy skepticism you might treat any other answer on the internet. This chat may be logged for quality and training purposes. Please don't send Bill any PII -- he's scared of intimacy. All chats with Bill are subject to Plaid's Privacy Policy.
    Plaid.com
    Log in
    Get API Keys
    Open nav

    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/getFetch Account data
    /processor/auth/getFetch Auth data
    /processor/balance/getFetch Balance data
    /processor/identity/getFetch Identity data
    /processor/identity/matchRetrieve Identity match scores
    /processor/investments/holdings/getFetch Investments Holdings data
    /processor/investments/transactions/getFetch Investments Transactions data
    /processor/liabilities/getRetrieve Liabilities data
    /processor/signal/evaluateRetrieve Signal scores
    /processor/signal/decision/reportReport whether you initiated an ACH transaction
    /processor/signal/return/reportReport a return for an ACH transaction
    /processor/signal/preparePrepare a processor token for Signal
    /processor/token/webhook/updateSet the webhook URL for a processor token
    /processor/transactions/syncGet transaction data or incremental transaction updates
    /processor/transactions/getFetch transaction data
    /processor/transactions/recurring/getFetch recurring transaction data
    /processor/transactions/refreshRefresh transaction data
    Webhooks
    WEBHOOK_UPDATE_ACKNOWLEDGEDItem'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.

    processor/account/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    Select Language
    1try {
    2 const request: ProcessorAccountGetRequest = {
    3 processor_token: processorToken,
    4 };
    5 const response = await plaidClient.ProcessorAccountGet(request);
    6} catch (error) {
    7 // handle error
    8}
    processor/account/get

    Response fields and example

    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    institution_id
    stringstring
    The Plaid Institution ID associated with the Account.
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    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, savings, or cash management 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.

    processor/auth/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    Select group for content switcher
    Select Language
    1const request: ProcessorAuthGetRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorAuthGet(request);
    processor/auth/get

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    numbers
    objectobject
    An object containing identifying numbers used for making electronic transfers to and from the 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
    nullableobjectnullable, object
    Identifying information for transferring money to or from a US account via ACH or wire transfer.
    account_id
    stringstring
    The Plaid account ID associated with the account numbers
    account
    stringstring
    The ACH account number for the account.
    At certain institutions, including Chase, PNC, and (coming May 2025) US Bank, you will receive "tokenized" routing and account numbers, which are not the user's actual account and routing numbers. For important details on how this may impact your integration and on how to avoid fraud, user confusion, and ACH returns, see Tokenized account numbers.
    is_tokenized_account_number
    booleanboolean
    Indicates whether the account number is tokenized by the institution. For important details on how tokenized account numbers may impact your integration, see Tokenized account numbers.
    routing
    stringstring
    The ACH routing number for the account. This may be a tokenized routing number. For more information, see Tokenized account numbers.
    wire_routing
    nullablestringnullable, string
    The wire transfer routing number for the account. This field is only populated if the institution is known to use a separate wire transfer routing number. Many institutions do not have a separate wire routing number and use the ACH routing number for wires instead. It is recommended to have the end user manually confirm their wire routing number before sending any wires to their account, especially if this field is null.
    eft
    nullableobjectnullable, object
    Identifying information for transferring money to or from a Canadian bank account via EFT.
    account_id
    stringstring
    The Plaid account ID associated with the account numbers
    account
    stringstring
    The EFT account number for the account
    institution
    stringstring
    The EFT institution number for the account
    branch
    stringstring
    The EFT branch number for the account
    international
    nullableobjectnullable, object
    Identifying information for transferring money to or from an international bank account via wire transfer.
    account_id
    stringstring
    The Plaid account ID associated with the account numbers
    iban
    stringstring
    The International Bank Account Number (IBAN) for the account
    bic
    stringstring
    The Bank Identifier Code (BIC) for the account
    bacs
    nullableobjectnullable, object
    Identifying information for transferring money to or from a UK bank account via BACS.
    account_id
    stringstring
    The Plaid account ID associated with the account numbers
    account
    stringstring
    The BACS account number for the account
    sort_code
    stringstring
    The BACS sort code for the account
    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    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": null
    10 },
    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.

    processor/balance/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    options
    objectobject
    Optional parameters to /processor/balance/get.
    min_last_updated_datetime
    stringstring
    Timestamp in ISO 8601 format (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 one or more account types being requested is a non-depository account (such as a credit card) as Capital One does not provide real-time balance for non-depository accounts. In this 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 and real-time balance information will be fetched.
    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.


    Format: date-time
    Select group for content switcher
    Select Language
    1const request: ProcessorBalanceGetRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorBalanceGet(request);
    processor/balance/get

    Response fields and example

    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    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.

    processor/identity/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    Select group for content switcher
    Select Language
    1const request: ProcessorIdentityGetRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorIdentityGet(request);
    processor/identity/get

    Response fields and example

    account
    objectobject
    Identity information about an account
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    owners
    [object][object]
    Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same 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 versioning
    names
    [string][string]
    A list of names associated with the account by the financial institution. In the case of a joint account, Plaid will make a best effort to report the names of all account holders.
    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
    [object][object]
    A list of phone numbers associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution.
    data
    stringstring
    The phone number.
    primary
    booleanboolean
    When true, identifies the phone number as the primary number on an account.
    type
    stringstring
    The type of phone number.

    Possible values: home, work, office, mobile, mobile1, other
    emails
    [object][object]
    A list of email addresses associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution.
    data
    stringstring
    The email address.
    primary
    booleanboolean
    When true, identifies the email address as the primary email on an account.
    type
    stringstring
    The type of email account as described by the financial institution.

    Possible values: primary, secondary, other
    addresses
    [object][object]
    Data about the various addresses associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution.
    data
    objectobject
    Data about the components comprising an address.
    city
    nullablestringnullable, string
    The full city name
    region
    nullablestringnullable, string
    The region or state. In API versions 2018-05-22 and earlier, this field is called state. Example: "NC"
    street
    stringstring
    The full street address Example: "564 Main Street, APT 15"
    postal_code
    nullablestringnullable, string
    The postal code. In API versions 2018-05-22 and earlier, this field is called zip.
    country
    nullablestringnullable, string
    The ISO 3166-1 alpha-2 country code
    primary
    booleanboolean
    When true, identifies the address as the primary address on an account.
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    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": true
    26 },
    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": false
    36 }
    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": "2025550123",
    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.

    processor/identity/match

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    user
    objectobject
    The user's legal name, phone number, email address and address used to perform fuzzy match. If Financial Account Matching is enabled in the Identity Verification product, leave this field empty to automatically match against PII collected from the Identity Verification checks.
    legal_name
    stringstring
    The user's full legal name.
    phone_number
    stringstring
    The user's phone number, in E.164 format: +{countrycode}{number}. For example: "+14157452130". Phone numbers provided in other formats will be parsed on a best-effort basis. Phone number input is validated against valid number ranges; number strings that do not match a real-world phone numbering scheme may cause the request to fail, even in the Sandbox test environment.
    email_address
    stringstring
    The user's email address.
    address
    objectobject
    Data about the components comprising an address.
    city
    stringstring
    The full city name
    region
    stringstring
    The region or state. In API versions 2018-05-22 and earlier, this field is called state. Example: "NC"
    street
    stringstring
    The full street address Example: "564 Main Street, APT 15"
    postal_code
    stringstring
    The postal code. In API versions 2018-05-22 and earlier, this field is called zip.
    country
    stringstring
    The ISO 3166-1 alpha-2 country code
    Select Language
    1const request: ProcessorIdentityMatchRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorIdentityMatch(request);
    processor/identity/match

    Response fields and example

    account
    objectobject
    Identity match scores for an account
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    legal_name
    nullableobjectnullable, object
    Score found by matching name provided by the API with the name on the account at the financial institution. If the account contains multiple owners, the maximum match score is filled.
    score
    nullableintegernullable, integer
    Match score for name. 100 is a perfect score, 99-85 means a strong match, 84-70 is a partial match, any score less than 70 is a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the name is missing from either the API or financial institution, this is null.
    is_first_name_or_last_name_match
    nullablebooleannullable, boolean
    first or last name completely matched, likely a family member
    is_nickname_match
    nullablebooleannullable, boolean
    nickname matched, example Jennifer and Jenn.
    is_business_name_detected
    nullablebooleannullable, boolean
    Is 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 that an account's name is a business name. However, a false result does not mean the account name is not a business name, as some businesses do not use these strings in the names used for their financial institution accounts.
    phone_number
    nullableobjectnullable, object
    Score found by matching phone number provided by the API with the phone number on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.
    score
    nullableintegernullable, integer
    Match score for normalized phone number. 100 is a perfect match, 99-70 is a partial match (matching the same phone number with extension against one without extension, etc.), anything below 70 is considered a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the phone number is missing from either the API or financial institution, this is null.
    email_address
    nullableobjectnullable, object
    Score found by matching email provided by the API with the email on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.
    score
    nullableintegernullable, integer
    Match score for normalized email. 100 is a perfect match, 99-70 is a partial match (matching the same email with different '+' extensions), anything below 70 is considered a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the email is missing from either the API or financial institution, this is null.
    address
    nullableobjectnullable, object
    Score found by matching address provided by the API with the address on the account at the financial institution. The score can range from 0 to 100 where 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.
    score
    nullableintegernullable, integer
    Match score for address. 100 is a perfect match, 99-90 is a strong match, 89-70 is a partial match, anything below 70 is considered a weak match. Typically, the match threshold should be set to a score of 70 or higher. If the address is missing from either the API or financial institution, this is null.
    is_postal_code_match
    nullablebooleannullable, boolean
    postal code was provided for both and was a match
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    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": false
    19 },
    20 "phone_number": {
    21 "score": 100
    22 },
    23 "email_address": {
    24 "score": 100
    25 },
    26 "address": {
    27 "score": 100,
    28 "is_postal_code_match": true
    29 },
    30 "subtype": "checking",
    31 "type": "depository"
    32 },
    33 "request_id": "3nARps6TOYtbACO"
    34}
    Was this helpful?
    =*=*=*=

    /processor/investments/holdings/get

    Retrieve Investment Holdings

    This endpoint returns the stock position data of the account associated with a given processor token.

    processor/investments/holdings/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    Select Language
    1const request: ProcessorInvestmentsHoldingsGetRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorInvestmentsHoldingsGet(request);
    processor/investments/holdings/get

    Response fields and example

    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    holdings
    [object][object]
    The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the securities field.
    account_id
    stringstring
    The Plaid account_id associated with the holding.
    security_id
    stringstring
    The Plaid security_id associated with the holding. Security data is not specific to a user's account; any user who held the same security at the same financial institution at the same time would have identical security data. The security_id for the same security will typically be the same across different institutions, but this is not guaranteed. The security_id does not typically change, but may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change.
    institution_price
    numbernumber
    The last price given by the institution for this security.

    Format: double
    institution_price_as_of
    nullablestringnullable, string
    The date at which institution_price was current.

    Format: date
    institution_price_datetime
    nullablestringnullable, string
    Date and time at which institution_price was current, in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ).
    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).


    Format: date-time
    institution_value
    numbernumber
    The value of the holding, as reported by the institution.

    Format: double
    cost_basis
    nullablenumbernullable, number
    The total cost basis of the holding (e.g., the total amount spent to acquire all assets currently in the holding).

    Format: double
    quantity
    numbernumber
    The total quantity of the asset held, as reported by the financial institution. If the security is an option, quantity will reflect the total number of options (typically the number of contracts multiplied by 100), not the number of contracts.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the holding. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the holding. Always 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_codes.
    vested_quantity
    nullablenumbernullable, number
    The total quantity of vested assets held, as reported by the financial institution. Vested assets are only associated with equities.

    Format: double
    vested_value
    nullablenumbernullable, number
    The value of the vested holdings as reported by the institution.

    Format: double
    securities
    [object][object]
    Objects describing the securities held in the account.
    security_id
    stringstring
    A unique, Plaid-specific identifier for the security, used to associate securities with holdings. Like all Plaid identifiers, the security_id is case sensitive. The security_id may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change.
    isin
    nullablestringnullable, string
    12-character ISIN, a globally unique securities identifier. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process here.
    cusip
    nullablestringnullable, string
    9-character CUSIP, an identifier assigned to North American securities. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process here.
    sedol
    nullablestringnullable, string
    7-character SEDOL, an identifier assigned to securities in the UK.
    institution_security_id
    nullablestringnullable, string
    An identifier given to the security by the institution
    institution_id
    nullablestringnullable, string
    If institution_security_id is present, this field indicates the Plaid institution_id of the institution to whom the identifier belongs.
    proxy_security_id
    nullablestringnullable, string
    In certain cases, Plaid will provide the ID of another security whose performance resembles this security, typically when the original security has low volume, or when a private security can be modeled with a publicly traded security.
    name
    nullablestringnullable, string
    A descriptive name for the security, suitable for display.
    ticker_symbol
    nullablestringnullable, string
    The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.
    is_cash_equivalent
    nullablebooleannullable, boolean
    Indicates that a security is a highly liquid asset and can be treated like cash.
    type
    nullablestringnullable, string
    The security type of the holding.
    In rare instances, a null value is returned when institutional data is insufficient to determine the security type.
    Valid security types are:
    cash: Cash, currency, and money market funds
    cryptocurrency: Digital or virtual currencies
    derivative: Options, warrants, and other derivative instruments
    equity: Domestic and foreign equities
    etf: Multi-asset exchange-traded investment funds
    fixed income: Bonds and certificates of deposit (CDs)
    loan: Loans and loan receivables
    mutual fund: Open- and closed-end vehicles pooling funds of multiple investors
    other: Unknown or other investment types
    close_price
    nullablenumbernullable, number
    Price of the security at the close of the previous trading session. Null for non-public securities.
    If the security is a foreign currency this field will be updated daily and will be priced in USD.
    If the security is a cryptocurrency, this field will be updated multiple times a day. As crypto prices can fluctuate quickly and data may become stale sooner than other asset classes, refer to update_datetime with the time when the price was last updated.


    Format: double
    close_price_as_of
    nullablestringnullable, string
    Date for which close_price is accurate. Always null if close_price is null.

    Format: date
    update_datetime
    nullablestringnullable, string
    Date and time at which close_price is accurate, in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ). Always null if close_price is null.

    Format: date-time
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the price given. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the security. Always 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_codes.
    market_identifier_code
    nullablestringnullable, string
    The ISO-10383 Market Identifier Code of the exchange or market in which the security is being traded.
    sector
    nullablestringnullable, string
    The sector classification of the security, such as Finance, Health Technology, etc.
    For a complete list of possible values, please refer to the "Sectors and Industries" spreadsheet.
    industry
    nullablestringnullable, string
    The industry classification of the security, such as Biotechnology, Airlines, etc.
    For a complete list of possible values, please refer to the "Sectors and Industries" spreadsheet.
    option_contract
    nullableobjectnullable, object
    Details about the option security.
    For the Sandbox environment, this data is currently only available if the Item is using a custom Sandbox user and the ticker field of the custom security follows the OCC Option Symbol standard with no spaces. For an example of simulating this in Sandbox, see the custom Sandbox GitHub.
    contract_type
    stringstring
    The type of this option contract. It is one of:
    put: for Put option contracts
    call: for Call option contracts
    expiration_date
    stringstring
    The expiration date for this option contract, in ISO 8601 format.

    Format: date
    strike_price
    numbernumber
    The strike price for this option contract, per share of security.

    Format: double
    underlying_security_ticker
    stringstring
    The ticker of the underlying security for this option contract.
    fixed_income
    nullableobjectnullable, object
    Details about the fixed income security.
    yield_rate
    nullableobjectnullable, object
    Details about a fixed income security's expected rate of return.
    percentage
    numbernumber
    The fixed income security's expected rate of return.

    Format: double
    type
    nullablestringnullable, string
    The type of rate which indicates how the predicted yield was calculated. It is one of:
    coupon: the annualized interest rate for securities with a one-year term or longer, such as treasury notes and bonds.
    coupon_equivalent: the calculated equivalent for the annualized interest rate factoring in the discount rate and time to maturity, for shorter term, non-interest-bearing securities such as treasury bills.
    discount: the rate at which the present value or cost is discounted from the future value upon maturity, also known as the face value.
    yield: the total predicted rate of return factoring in both the discount rate and the coupon rate, applicable to securities such as exchange-traded bonds which can both be interest-bearing as well as sold at a discount off its face value.


    Possible values: coupon, coupon_equivalent, discount, yield, null
    maturity_date
    nullablestringnullable, string
    The maturity date for this fixed income security, in ISO 8601 format.

    Format: date
    issue_date
    nullablestringnullable, string
    The issue date for this fixed income security, in ISO 8601 format.

    Format: date
    face_value
    nullablenumbernullable, number
    The face value that is paid upon maturity of the fixed income security, per unit of security.

    Format: double
    is_investments_fallback_item
    booleanboolean
    When true, this field indicates that the Item's portfolio was manually created with the Investments Fallback flow.
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    1{
    2 "account": {
    3 "account_id": "JqMLm4rJwpF6gMPJwBqdh9ZjjPvvpDcb7kDK1",
    4 "balances": {
    5 "available": null,
    6 "current": 110.01,
    7 "iso_currency_code": "USD",
    8 "limit": null,
    9 "unofficial_currency_code": null
    10 },
    11 "mask": "5555",
    12 "name": "Plaid IRA",
    13 "official_name": null,
    14 "subtype": "ira",
    15 "type": "investment"
    16 },
    17 "holdings": [
    18 {
    19 "account_id": "JqMLm4rJwpF6gMPJwBqdh9ZjjPvvpDcb7kDK1",
    20 "cost_basis": 1,
    21 "institution_price": 1,
    22 "institution_price_as_of": "2021-04-13",
    23 "institution_price_datetime": null,
    24 "institution_value": 0.01,
    25 "iso_currency_code": "USD",
    26 "quantity": 0.01,
    27 "security_id": "d6ePmbPxgWCWmMVv66q9iPV94n91vMtov5Are",
    28 "unofficial_currency_code": null
    29 },
    30 {
    31 "account_id": "JqMLm4rJwpF6gMPJwBqdh9ZjjPvvpDcb7kDK1",
    32 "cost_basis": 0.01,
    33 "institution_price": 0.011,
    34 "institution_price_as_of": "2021-04-13",
    35 "institution_price_datetime": null,
    36 "institution_value": 110,
    37 "iso_currency_code": "USD",
    38 "quantity": 10000,
    39 "security_id": "8E4L9XLl6MudjEpwPAAgivmdZRdBPJuvMPlPb",
    40 "unofficial_currency_code": null
    41 }
    42 ],
    43 "securities": [
    44 {
    45 "close_price": 0.011,
    46 "close_price_as_of": "2021-04-13",
    47 "cusip": null,
    48 "institution_id": null,
    49 "institution_security_id": null,
    50 "is_cash_equivalent": false,
    51 "isin": null,
    52 "iso_currency_code": "USD",
    53 "name": "Nflx Feb 01'18 $355 Call",
    54 "proxy_security_id": null,
    55 "security_id": "8E4L9XLl6MudjEpwPAAgivmdZRdBPJuvMPlPb",
    56 "sedol": null,
    57 "ticker_symbol": "NFLX180201C00355000",
    58 "type": "derivative",
    59 "unofficial_currency_code": null,
    60 "update_datetime": null,
    61 "market_identifier_code": "XNAS",
    62 "sector": "Technology Services",
    63 "industry": "Internet Software or Services",
    64 "option_contract": {
    65 "contract_type": "call",
    66 "expiration_date": "2018-02-01",
    67 "strike_price": 355,
    68 "underlying_security_ticker": "NFLX"
    69 },
    70 "fixed_income": null
    71 },
    72 {
    73 "close_price": 1,
    74 "close_price_as_of": null,
    75 "cusip": null,
    76 "institution_id": null,
    77 "institution_security_id": null,
    78 "is_cash_equivalent": true,
    79 "isin": null,
    80 "iso_currency_code": "USD",
    81 "name": "U S Dollar",
    82 "proxy_security_id": null,
    83 "security_id": "d6ePmbPxgWCWmMVv66q9iPV94n91vMtov5Are",
    84 "sedol": null,
    85 "ticker_symbol": "USD",
    86 "type": "cash",
    87 "unofficial_currency_code": null,
    88 "update_datetime": null,
    89 "market_identifier_code": null,
    90 "sector": null,
    91 "industry": null,
    92 "option_contract": null,
    93 "fixed_income": null
    94 }
    95 ],
    96 "request_id": "24MxmGFZz89Xg2f",
    97 "is_investments_fallback_item": false
    98}
    Was this helpful?
    =*=*=*=

    /processor/investments/transactions/get

    Get investment transactions data

    The /processor/investments/transactions/get endpoint allows developers to retrieve up to 24 months of user-authorized transaction data for the investment account associated with the processor token.
    Transactions are returned in reverse-chronological order, and the sequence of transaction ordering is stable and will not shift.
    Due to the potentially large number of investment transactions associated with the account, results are paginated. Manipulate the count and offset parameters in conjunction with the total_investment_transactions response body field to fetch all available investment transactions.
    Note that Investments does not have a webhook to indicate when initial transaction data has loaded (unless you use the async_update option). Instead, if transactions data is not ready when /processor/investments/transactions/get is first called, Plaid will wait for the data. For this reason, calling /processor/investments/transactions/get immediately after Link may take up to one to two minutes to return.
    Data returned by the asynchronous investments extraction flow (when async_update is set to true) may not be immediately available to /processor/investments/transactions/get. To be alerted when the data is ready to be fetched, listen for the HISTORICAL_UPDATE webhook. If no investments history is ready when /processor/investments/transactions/get is called, it will return a PRODUCT_NOT_READY error.
    To receive Investments Transactions webhooks for a processor token, set its webhook URL via the /processor/token/webhook/update endpoint.

    processor/investments/transactions/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    objectobject
    An optional object to filter /investments/transactions/get results. If provided, must be non-null.
    account_ids
    [string][string]
    An array of account_ids to retrieve for the Item.
    count
    integerinteger
    The number of transactions to fetch.

    Default: 100
    Minimum: 1
    Maximum: 500
    offset
    integerinteger
    The number of transactions to skip when fetching transaction history

    Default: 0
    Minimum: 0
    async_update
    booleanboolean
    If the Item was not initialized with the investments product via the products, required_if_supported_products, or optional_products array when calling /link/token/create, and async_update is set to true, the initial Investments extraction will happen asynchronously. Plaid will subsequently fire a HISTORICAL_UPDATE webhook when the extraction completes. When false, Plaid will wait to return a response until extraction completion and no HISTORICAL_UPDATE webhook will fire. Note that while the extraction is happening asynchronously, calls to /investments/transactions/get and /investments/refresh will return PRODUCT_NOT_READY errors until the extraction completes.

    Default: false
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    start_date
    requiredstringrequired, string
    The earliest date for which data should be returned. Dates should be formatted as YYYY-MM-DD.

    Format: date
    end_date
    requiredstringrequired, string
    The latest date for which data should be returned. Dates should be formatted as YYYY-MM-DD.

    Format: date
    Select Language
    1const request: ProcessorInvestmentsTransactionsGetRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorInvestmentsTransactionsGet(request);
    processor/investments/transactions/get

    Response fields and example

    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    investment_transactions
    [object][object]
    An array containing investment transactions from the account. Investments transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the count parameter.
    investment_transaction_id
    stringstring
    The ID of the Investment transaction, unique across all Plaid transactions. Like all Plaid identifiers, the investment_transaction_id is case sensitive.
    account_id
    stringstring
    The account_id of the account against which this transaction posted.
    security_id
    nullablestringnullable, string
    The security_id to which this transaction is related.
    date
    stringstring
    The ISO 8601 posting date for the transaction.

    Format: date
    name
    stringstring
    The institution’s description of the transaction.
    quantity
    numbernumber
    The number of units of the security involved in this transaction. Positive for buy transactions; negative for sell transactions.

    Format: double
    amount
    numbernumber
    The complete value of the transaction. Positive values when cash is debited, e.g. purchases of stock; negative values when cash is credited, e.g. sales of stock. Treatment remains the same for cash-only movements unassociated with securities.

    Format: double
    price
    numbernumber
    The price of the security at which this transaction occurred.

    Format: double
    fees
    nullablenumbernullable, number
    The combined value of all fees applied to this transaction

    Format: double
    type
    stringstring
    Value is one of the following: buy: Buying an investment sell: Selling an investment cancel: A cancellation of a pending transaction cash: Activity that modifies a cash position fee: A fee on the account transfer: Activity which modifies a position, but not through buy/sell activity e.g. options exercise, portfolio transfer
    For descriptions of possible transaction types and subtypes, see the Investment transaction types schema.


    Possible values: buy, sell, cancel, cash, fee, transfer
    subtype
    stringstring
    For descriptions of possible transaction types and subtypes, see the Investment transaction types schema.

    Possible values: account fee, adjustment, assignment, buy, buy to cover, contribution, deposit, distribution, dividend, dividend reinvestment, exercise, expire, fund fee, interest, interest receivable, interest reinvestment, legal fee, loan payment, long-term capital gain, long-term capital gain reinvestment, management fee, margin expense, merger, miscellaneous fee, non-qualified dividend, non-resident tax, pending credit, pending debit, qualified dividend, rebalance, return of principal, request, sell, sell short, send, short-term capital gain, short-term capital gain reinvestment, spin off, split, stock distribution, tax, tax withheld, trade, transfer, transfer fee, trust fee, unqualified gain, withdrawal
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the transaction. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the holding. Always 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_codes.
    securities
    [object][object]
    All securities for which there is a corresponding transaction being fetched.
    security_id
    stringstring
    A unique, Plaid-specific identifier for the security, used to associate securities with holdings. Like all Plaid identifiers, the security_id is case sensitive. The security_id may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change.
    isin
    nullablestringnullable, string
    12-character ISIN, a globally unique securities identifier. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process here.
    cusip
    nullablestringnullable, string
    9-character CUSIP, an identifier assigned to North American securities. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process here.
    sedol
    nullablestringnullable, string
    7-character SEDOL, an identifier assigned to securities in the UK.
    institution_security_id
    nullablestringnullable, string
    An identifier given to the security by the institution
    institution_id
    nullablestringnullable, string
    If institution_security_id is present, this field indicates the Plaid institution_id of the institution to whom the identifier belongs.
    proxy_security_id
    nullablestringnullable, string
    In certain cases, Plaid will provide the ID of another security whose performance resembles this security, typically when the original security has low volume, or when a private security can be modeled with a publicly traded security.
    name
    nullablestringnullable, string
    A descriptive name for the security, suitable for display.
    ticker_symbol
    nullablestringnullable, string
    The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.
    is_cash_equivalent
    nullablebooleannullable, boolean
    Indicates that a security is a highly liquid asset and can be treated like cash.
    type
    nullablestringnullable, string
    The security type of the holding.
    In rare instances, a null value is returned when institutional data is insufficient to determine the security type.
    Valid security types are:
    cash: Cash, currency, and money market funds
    cryptocurrency: Digital or virtual currencies
    derivative: Options, warrants, and other derivative instruments
    equity: Domestic and foreign equities
    etf: Multi-asset exchange-traded investment funds
    fixed income: Bonds and certificates of deposit (CDs)
    loan: Loans and loan receivables
    mutual fund: Open- and closed-end vehicles pooling funds of multiple investors
    other: Unknown or other investment types
    close_price
    nullablenumbernullable, number
    Price of the security at the close of the previous trading session. Null for non-public securities.
    If the security is a foreign currency this field will be updated daily and will be priced in USD.
    If the security is a cryptocurrency, this field will be updated multiple times a day. As crypto prices can fluctuate quickly and data may become stale sooner than other asset classes, refer to update_datetime with the time when the price was last updated.


    Format: double
    close_price_as_of
    nullablestringnullable, string
    Date for which close_price is accurate. Always null if close_price is null.

    Format: date
    update_datetime
    nullablestringnullable, string
    Date and time at which close_price is accurate, in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ). Always null if close_price is null.

    Format: date-time
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the price given. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the security. Always 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_codes.
    market_identifier_code
    nullablestringnullable, string
    The ISO-10383 Market Identifier Code of the exchange or market in which the security is being traded.
    sector
    nullablestringnullable, string
    The sector classification of the security, such as Finance, Health Technology, etc.
    For a complete list of possible values, please refer to the "Sectors and Industries" spreadsheet.
    industry
    nullablestringnullable, string
    The industry classification of the security, such as Biotechnology, Airlines, etc.
    For a complete list of possible values, please refer to the "Sectors and Industries" spreadsheet.
    option_contract
    nullableobjectnullable, object
    Details about the option security.
    For the Sandbox environment, this data is currently only available if the Item is using a custom Sandbox user and the ticker field of the custom security follows the OCC Option Symbol standard with no spaces. For an example of simulating this in Sandbox, see the custom Sandbox GitHub.
    contract_type
    stringstring
    The type of this option contract. It is one of:
    put: for Put option contracts
    call: for Call option contracts
    expiration_date
    stringstring
    The expiration date for this option contract, in ISO 8601 format.

    Format: date
    strike_price
    numbernumber
    The strike price for this option contract, per share of security.

    Format: double
    underlying_security_ticker
    stringstring
    The ticker of the underlying security for this option contract.
    fixed_income
    nullableobjectnullable, object
    Details about the fixed income security.
    yield_rate
    nullableobjectnullable, object
    Details about a fixed income security's expected rate of return.
    percentage
    numbernumber
    The fixed income security's expected rate of return.

    Format: double
    type
    nullablestringnullable, string
    The type of rate which indicates how the predicted yield was calculated. It is one of:
    coupon: the annualized interest rate for securities with a one-year term or longer, such as treasury notes and bonds.
    coupon_equivalent: the calculated equivalent for the annualized interest rate factoring in the discount rate and time to maturity, for shorter term, non-interest-bearing securities such as treasury bills.
    discount: the rate at which the present value or cost is discounted from the future value upon maturity, also known as the face value.
    yield: the total predicted rate of return factoring in both the discount rate and the coupon rate, applicable to securities such as exchange-traded bonds which can both be interest-bearing as well as sold at a discount off its face value.


    Possible values: coupon, coupon_equivalent, discount, yield, null
    maturity_date
    nullablestringnullable, string
    The maturity date for this fixed income security, in ISO 8601 format.

    Format: date
    issue_date
    nullablestringnullable, string
    The issue date for this fixed income security, in ISO 8601 format.

    Format: date
    face_value
    nullablenumbernullable, number
    The face value that is paid upon maturity of the fixed income security, per unit of security.

    Format: double
    total_investment_transactions
    integerinteger
    The total number of transactions available within the date range specified. If total_investment_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
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    is_investments_fallback_item
    booleanboolean
    When true, this field indicates that the Item's portfolio was manually created with the Investments Fallback flow.
    1{
    2 "account": {
    3 "account_id": "rz99ex9ZQotvnjXdgQLEsR81e3ArPgulVWjGj",
    4 "balances": {
    5 "available": null,
    6 "current": 23631.9805,
    7 "iso_currency_code": "USD",
    8 "limit": null,
    9 "unofficial_currency_code": null
    10 },
    11 "mask": "6666",
    12 "name": "Plaid 401k",
    13 "official_name": null,
    14 "subtype": "401k",
    15 "type": "investment"
    16 },
    17 "investment_transactions": [
    18 {
    19 "account_id": "rz99ex9ZQotvnjXdgQLEsR81e3ArPgulVWjGj",
    20 "amount": -8.72,
    21 "cancel_transaction_id": null,
    22 "date": "2020-05-29",
    23 "fees": 0,
    24 "investment_transaction_id": "oq99Pz97joHQem4BNjXECev1E4B6L6sRzwANW",
    25 "iso_currency_code": "USD",
    26 "name": "INCOME DIV DIVIDEND RECEIVED",
    27 "price": 0,
    28 "quantity": 0,
    29 "security_id": "eW4jmnjd6AtjxXVrjmj6SX1dNEdZp3Cy8RnRQ",
    30 "subtype": "dividend",
    31 "type": "cash",
    32 "unofficial_currency_code": null
    33 },
    34 {
    35 "account_id": "rz99ex9ZQotvnjXdgQLEsR81e3ArPgulVWjGj",
    36 "amount": -1289.01,
    37 "cancel_transaction_id": null,
    38 "date": "2020-05-28",
    39 "fees": 7.99,
    40 "investment_transaction_id": "pK99jB9e7mtwjA435GpVuMvmWQKVbVFLWme57",
    41 "iso_currency_code": "USD",
    42 "name": "SELL Matthews Pacific Tiger Fund Insti Class",
    43 "price": 27.53,
    44 "quantity": -47.74104242992852,
    45 "security_id": "JDdP7XPMklt5vwPmDN45t3KAoWAPmjtpaW7DP",
    46 "subtype": "sell",
    47 "type": "sell",
    48 "unofficial_currency_code": null
    49 }
    50 ],
    51 "request_id": "iv4q3ZlytOOthkv",
    52 "securities": [
    53 {
    54 "close_price": 27,
    55 "close_price_as_of": null,
    56 "cusip": "577130834",
    57 "institution_id": null,
    58 "institution_security_id": null,
    59 "is_cash_equivalent": false,
    60 "isin": "US5771308344",
    61 "iso_currency_code": "USD",
    62 "name": "Matthews Pacific Tiger Fund Insti Class",
    63 "proxy_security_id": null,
    64 "security_id": "JDdP7XPMklt5vwPmDN45t3KAoWAPmjtpaW7DP",
    65 "sedol": null,
    66 "ticker_symbol": "MIPTX",
    67 "type": "mutual fund",
    68 "unofficial_currency_code": null,
    69 "update_datetime": null,
    70 "market_identifier_code": "XNAS",
    71 "sector": "Miscellaneous",
    72 "industry": "Investment Trusts or Mutual Funds",
    73 "option_contract": null,
    74 "fixed_income": null
    75 },
    76 {
    77 "close_price": 34.73,
    78 "close_price_as_of": null,
    79 "cusip": "84470P109",
    80 "institution_id": null,
    81 "institution_security_id": null,
    82 "is_cash_equivalent": false,
    83 "isin": "US84470P1093",
    84 "iso_currency_code": "USD",
    85 "name": "Southside Bancshares Inc.",
    86 "proxy_security_id": null,
    87 "security_id": "eW4jmnjd6AtjxXVrjmj6SX1dNEdZp3Cy8RnRQ",
    88 "sedol": null,
    89 "ticker_symbol": "SBSI",
    90 "type": "equity",
    91 "unofficial_currency_code": null,
    92 "update_datetime": null,
    93 "market_identifier_code": "XNAS",
    94 "sector": "Finance",
    95 "industry": "Regional Banks",
    96 "option_contract": null,
    97 "fixed_income": null
    98 }
    99 ],
    100 "total_investment_transactions": 2
    101}
    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.

    processor/signal/evaluate

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    client_transaction_id
    requiredstringrequired, string
    The unique ID that you would like to use to refer to this transaction. For your convenience mapping your internal data, you could use your internal ID/identifier for this transaction. The max length for this field is 36 characters.

    Min length: 1
    Max length: 36
    amount
    requirednumberrequired, number
    The transaction amount, in USD (e.g. 102.05)

    Format: double
    user_present
    booleanboolean
    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
    stringstring
    A unique ID that identifies the end user in your system. This ID is used to correlate requests by a user with multiple Items. Personally identifiable information, such as an email address or phone number, should not be used in the client_user_id.
    is_recurring
    booleanboolean
    true if the ACH transaction is a recurring transaction; false otherwise
    default_payment_method
    stringstring
    The default ACH or non-ACH payment method to complete the transaction. SAME_DAY_ACH: Same Day ACH by NACHA. The debit transaction is processed and settled on the same day STANDARD_ACH: standard ACH by NACHA MULTIPLE_PAYMENT_METHODS: if there is no default debit rail or there are multiple payment methods Possible values: SAME_DAY_ACH, STANDARD_ACH, MULTIPLE_PAYMENT_METHODS
    user
    objectobject
    Details about the end user initiating the transaction (i.e., the account holder). When calling /signal/evaluate or /signal/processor/evaluate, this field is optional, but strongly recommended to increase the accuracy of Signal results.
    name
    objectobject
    The user's legal name
    prefix
    stringstring
    The user's name prefix (e.g. "Mr.")
    given_name
    stringstring
    The user's given name. If the user has a one-word name, it should be provided in this field.
    middle_name
    stringstring
    The user's middle name
    family_name
    stringstring
    The user's family name / surname
    suffix
    stringstring
    The user's name suffix (e.g. "II")
    phone_number
    stringstring
    The user's phone number, in E.164 format: +{countrycode}{number}. For example: "+14151234567"
    email_address
    stringstring
    The user's email address.
    address
    objectobject
    Data about the components comprising an address.
    city
    stringstring
    The full city name
    region
    stringstring
    The region or state Example: "NC"
    street
    stringstring
    The full street address Example: "564 Main Street, APT 15"
    postal_code
    stringstring
    The postal code
    country
    stringstring
    The ISO 3166-1 alpha-2 country code
    device
    objectobject
    Details about the end user's device. When calling /signal/evaluate or /signal/processor/evaluate, this field is optional, but strongly recommended to increase the accuracy of Signal results.
    ip_address
    stringstring
    The IP address of the device that initiated the transaction
    user_agent
    stringstring
    The user agent of the device that initiated the transaction (e.g. "Mozilla/5.0")
    ruleset_key
    stringstring
    The key of the Ruleset to use for this transaction. You can configure a Ruleset using the Signal dashboard located within the Plaid Dashboard. If not provided, no Ruleset will be used. This feature is currently in closed beta; to request access, contact your account manager.
    Select Language
    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};
    31
    32try {
    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 error
    38}
    processor/signal/evaluate

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    scores
    nullableobjectnullable, object
    Risk scoring details broken down by risk category.
    customer_initiated_return_risk
    objectobject
    The object contains a risk score and a risk tier that evaluate the transaction return risk of an unauthorized debit. Common return codes in this category include: "R05", "R07", "R10", "R11", "R29". These returns typically have a return time frame of up to 60 calendar days. During this period, the customer of financial institutions can dispute a transaction as unauthorized.
    score
    integerinteger
    A score from 1-99 that indicates the transaction return risk: a higher risk score suggests a higher return likelihood.

    Minimum: 1
    Maximum: 99
    bank_initiated_return_risk
    objectobject
    The object contains a risk score and a risk tier that evaluate the transaction return risk because an account is overdrawn or because an ineligible account is used. Common return codes in this category include: "R01", "R02", "R03", "R04", "R06", "R08", "R09", "R13", "R16", "R17", "R20", "R23". These returns have a turnaround time of 2 banking days.
    score
    integerinteger
    A score from 1-99 that indicates the transaction return risk: a higher risk score suggests a higher return likelihood.

    Minimum: 1
    Maximum: 99
    core_attributes
    objectobject
    The core attributes object contains additional data that can be used to assess the ACH return risk. Examples of data include:
    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 account
    For 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
    ruleset
    nullableobjectnullable, object
    Details about the transaction result after evaluated by the requested Ruleset. If a ruleset_key is not provided, this field will be omitted. This feature is currently in closed beta; to request access, contact your account manager.
    ruleset_key
    stringstring
    The key of the Ruleset used for this transaction.
    result
    stringstring
    The result of the rule that was triggered for this transaction.
    ACCEPT: Accept the transaction for processing. REROUTE: Reroute the transaction to a different payment method, as this transaction is too risky. REVIEW: Review the transaction before proceeding.


    Possible values: ACCEPT, REROUTE, REVIEW
    triggered_rule_details
    nullableobjectnullable, object
    Rules are run in numerical order. The first rule with a logic match is triggered. These are the details of that rule.
    internal_note
    stringstring
    An optional message attached to the triggered rule, defined within the Dashboard, for your internal use. Useful for debugging, such as “Account appears to be closed.”
    custom_action_key
    stringstring
    A string key, defined within the Dashboard, used to trigger programmatic behavior for a certain result. For instance, you could optionally choose to define a "3-day-hold" custom_action_key for an ACCEPT result.
    outcome
    deprecatedstringdeprecated, string
    The evaluated outcome for this transaction. This field is deprecated, use result or triggered_rule_details.custom_action_key instead.
    warnings
    [object][object]
    If bank information was not available to be used in the Signal model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of Signal scores in the case of missing bank data, file a support ticket or contact your Plaid account manager.
    warning_type
    stringstring
    A broad categorization of the warning. Safe for programmatic use.
    warning_code
    stringstring
    The warning code identifies a specific kind of warning that pertains to the error causing bank data to be missing. Safe for programmatic use. For more details on warning codes, please refer to Plaid standard error codes documentation. If you receive the 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
    stringstring
    A developer-friendly representation of the warning type. This may change over time and is not safe for programmatic use.
    1{
    2 "scores": {
    3 "customer_initiated_return_risk": {
    4 "score": 9,
    5 "risk_tier": 1
    6 },
    7 "bank_initiated_return_risk": {
    8 "score": 72,
    9 "risk_tier": 7
    10 }
    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": false
    18 },
    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.

    processor/liabilities/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    Select Language
    1const request: ProcessorLiabilitiesGetRequest = {
    2 processor_token: processorToken,
    3};
    4const response = plaidClient.processorLiabilitiesGet(request);
    processor/liabilities/get

    Response fields and example

    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    liabilities
    objectobject
    An object containing liability accounts
    credit
    nullable[object]nullable, [object]
    The credit accounts returned.
    account_id
    nullablestringnullable, string
    The ID of the account that this liability belongs to.
    aprs
    [object][object]
    The various interest rates that apply to the account. APR information is not provided by all card issuers; if APR data is not available, this array will be empty.
    apr_percentage
    numbernumber
    Annual Percentage Rate applied.

    Format: double
    apr_type
    stringstring
    The type of balance to which the APR applies.

    Possible values: balance_transfer_apr, cash_apr, purchase_apr, special
    balance_subject_to_apr
    nullablenumbernullable, number
    Amount of money that is subjected to the APR if a balance was carried beyond payment due date. How it is calculated can vary by card issuer. It is often calculated as an average daily balance.

    Format: double
    interest_charge_amount
    nullablenumbernullable, number
    Amount of money charged due to interest from last statement.

    Format: double
    is_overdue
    nullablebooleannullable, boolean
    true if a payment is currently overdue. Availability for this field is limited.
    last_payment_amount
    nullablenumbernullable, number
    The amount of the last payment.

    Format: double
    last_payment_date
    nullablestringnullable, string
    The date of the last payment. Dates are returned in an ISO 8601 format (YYYY-MM-DD). Availability for this field is limited.

    Format: date
    last_statement_issue_date
    nullablestringnullable, string
    The date of the last statement. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    last_statement_balance
    nullablenumbernullable, number
    The total amount owed as of the last statement issued

    Format: double
    minimum_payment_amount
    nullablenumbernullable, number
    The minimum payment due for the next billing cycle.

    Format: double
    next_payment_due_date
    nullablestringnullable, string
    The due date for the next payment. The due date is null if a payment is not expected. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    mortgage
    nullable[object]nullable, [object]
    The mortgage accounts returned.
    account_id
    stringstring
    The ID of the account that this liability belongs to.
    account_number
    nullablestringnullable, string
    The account number of the loan.
    current_late_fee
    nullablenumbernullable, number
    The current outstanding amount charged for late payment.

    Format: double
    escrow_balance
    nullablenumbernullable, number
    Total amount held in escrow to pay taxes and insurance on behalf of the borrower.

    Format: double
    has_pmi
    nullablebooleannullable, boolean
    Indicates whether the borrower has private mortgage insurance in effect.
    has_prepayment_penalty
    nullablebooleannullable, boolean
    Indicates whether the borrower will pay a penalty for early payoff of mortgage.
    interest_rate
    objectobject
    Object containing metadata about the interest rate for the mortgage.
    percentage
    nullablenumbernullable, number
    Percentage value (interest rate of current mortgage, not APR) of interest payable on a loan.

    Format: double
    type
    nullablestringnullable, string
    The type of interest charged (fixed or variable).
    last_payment_amount
    nullablenumbernullable, number
    The amount of the last payment.

    Format: double
    last_payment_date
    nullablestringnullable, string
    The date of the last payment. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    loan_type_description
    nullablestringnullable, string
    Description of the type of loan, for example 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
    nullablestringnullable, string
    Full duration of mortgage as at origination (e.g. 10 year).
    maturity_date
    nullablestringnullable, string
    Original date on which mortgage is due in full. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    next_monthly_payment
    nullablenumbernullable, number
    The amount of the next payment.

    Format: double
    next_payment_due_date
    nullablestringnullable, string
    The due date for the next payment. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    origination_date
    nullablestringnullable, string
    The date on which the loan was initially lent. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    origination_principal_amount
    nullablenumbernullable, number
    The original principal balance of the mortgage.

    Format: double
    past_due_amount
    nullablenumbernullable, number
    Amount of loan (principal + interest) past due for payment.

    Format: double
    property_address
    objectobject
    Object containing fields describing property address.
    city
    nullablestringnullable, string
    The city name.
    country
    nullablestringnullable, string
    The ISO 3166-1 alpha-2 country code.
    postal_code
    nullablestringnullable, string
    The five or nine digit postal code.
    region
    nullablestringnullable, string
    The region or state (example "NC").
    street
    nullablestringnullable, string
    The full street address (example "564 Main Street, Apt 15").
    ytd_interest_paid
    nullablenumbernullable, number
    The year to date (YTD) interest paid.

    Format: double
    ytd_principal_paid
    nullablenumbernullable, number
    The YTD principal paid.

    Format: double
    student
    nullable[object]nullable, [object]
    The student loan accounts returned.
    account_id
    nullablestringnullable, string
    The ID of the account that this liability belongs to. Each account can only contain one liability.
    account_number
    nullablestringnullable, string
    The account number of the loan. For some institutions, this may be a masked version of the number (e.g., the last 4 digits instead of the entire number).
    disbursement_dates
    nullable[string]nullable, [string]
    The dates on which loaned funds were disbursed or will be disbursed. These are often in the past. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    expected_payoff_date
    nullablestringnullable, string
    The date when the student loan is expected to be paid off. Availability for this field is limited. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    guarantor
    nullablestringnullable, string
    The guarantor of the student loan.
    interest_rate_percentage
    numbernumber
    The interest rate on the loan as a percentage.

    Format: double
    is_overdue
    nullablebooleannullable, boolean
    true if a payment is currently overdue. Availability for this field is limited.
    last_payment_amount
    nullablenumbernullable, number
    The amount of the last payment.

    Format: double
    last_payment_date
    nullablestringnullable, string
    The date of the last payment. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    last_statement_balance
    nullablenumbernullable, number
    The total amount owed as of the last statement issued

    Format: double
    last_statement_issue_date
    nullablestringnullable, string
    The date of the last statement. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    loan_name
    nullablestringnullable, string
    The type of loan, e.g., "Consolidation Loans".
    loan_status
    objectobject
    An object representing the status of the student loan
    end_date
    nullablestringnullable, string
    The date until which the loan will be in its current status. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    type
    nullablestringnullable, string
    The status type of the student loan

    Possible values: 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
    nullablenumbernullable, number
    The minimum payment due for the next billing cycle. There are some exceptions: Some institutions require a minimum payment across all loans associated with an account number. Our API presents that same minimum payment amount on each loan. The institutions that do this are: Great Lakes ( ins_116861), Firstmark (ins_116295), Commonbond Firstmark Services (ins_116950), 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.

    Format: double
    next_payment_due_date
    nullablestringnullable, string
    The due date for the next payment. The due date is 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).

    Format: date
    origination_date
    nullablestringnullable, string
    The date on which the loan was initially lent. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

    Format: date
    origination_principal_amount
    nullablenumbernullable, number
    The original principal balance of the loan.

    Format: double
    outstanding_interest_amount
    nullablenumbernullable, number
    The total dollar amount of the accrued interest balance. For Sallie Mae ( ins_116944), this amount is included in the current balance of the loan, so this field will return as null.

    Format: double
    payment_reference_number
    nullablestringnullable, string
    The relevant account number that should be used to reference this loan for payments. In the majority of cases, payment_reference_number will match account_number, but in some institutions, such as Great Lakes (ins_116861), it will be different.
    repayment_plan
    objectobject
    An object representing the repayment plan for the student loan
    description
    nullablestringnullable, string
    The description of the repayment plan as provided by the servicer.
    type
    nullablestringnullable, string
    The type of the repayment plan.

    Possible values: extended graduated, extended standard, graduated, income-contingent repayment, income-based repayment, income-sensitive repayment, interest-only, other, pay as you earn, revised pay as you earn, standard, saving on a valuable education, null
    sequence_number
    nullablestringnullable, string
    The sequence number of the student loan. Heartland ECSI (ins_116948) does not make this field available.
    servicer_address
    objectobject
    The address of the student loan servicer. This is generally the remittance address to which payments should be sent.
    city
    nullablestringnullable, string
    The full city name
    region
    nullablestringnullable, string
    The region or state Example: "NC"
    street
    nullablestringnullable, string
    The full street address Example: "564 Main Street, APT 15"
    postal_code
    nullablestringnullable, string
    The postal code
    country
    nullablestringnullable, string
    The ISO 3166-1 alpha-2 country code
    ytd_interest_paid
    nullablenumbernullable, number
    The year to date (YTD) interest paid. Availability for this field is limited.

    Format: double
    ytd_principal_paid
    nullablenumbernullable, number
    The year to date (YTD) principal paid. Availability for this field is limited.

    Format: double
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    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.22
    27 },
    28 {
    29 "apr_percentage": 27.95,
    30 "apr_type": "cash_apr",
    31 "balance_subject_to_apr": 56.22,
    32 "interest_charge_amount": 14.81
    33 },
    34 {
    35 "apr_percentage": 12.5,
    36 "apr_type": "purchase_apr",
    37 "balance_subject_to_apr": 157.01,
    38 "interest_charge_amount": 25.66
    39 },
    40 {
    41 "apr_percentage": 0,
    42 "apr_type": "special",
    43 "balance_subject_to_apr": 1000,
    44 "interest_charge_amount": 0
    45 }
    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.

    processor/signal/decision/report

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    client_transaction_id
    requiredstringrequired, string
    Must be the same as the client_transaction_id supplied when calling /signal/evaluate

    Min length: 1
    Max length: 36
    initiated
    requiredbooleanrequired, boolean
    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
    integerinteger
    The actual number of days (hold time) since the ACH debit transaction that you wait before making funds available to your customers. The holding time could affect the ACH return rate.
    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.


    Minimum: 0
    decision_outcome
    stringstring
    The payment decision from the risk assessment.
    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 review
    REJECT: reject the transaction
    TAKE_OTHER_RISK_MEASURES: for example, placing a longer hold on funds than those approved transactions or introducing customer frictions such as step-up verification/authentication
    NOT_EVALUATED: if only logging the Signal results without using them


    Possible values: APPROVE, REVIEW, REJECT, TAKE_OTHER_RISK_MEASURES, NOT_EVALUATED
    payment_method
    stringstring
    The payment method to complete the transaction after the risk assessment. It may be different from the default payment method.
    SAME_DAY_ACH: Same Day ACH by NACHA. The debit transaction is processed and settled on the same day
    STANDARD_ACH: Standard ACH by NACHA
    MULTIPLE_PAYMENT_METHODS: if there is no default debit rail or there are multiple payment methods


    Possible values: SAME_DAY_ACH, STANDARD_ACH, MULTIPLE_PAYMENT_METHODS
    amount_instantly_available
    numbernumber
    The amount (in USD) made available to your customers instantly following the debit transaction. It could be a partial amount of the requested transaction (example: 102.05).

    Format: double
    Select Language
    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};
    7
    8try {
    9 const decision_report_response =
    10 await plaidClient.processorSignalDecisionReport(decision_report_request);
    11 const decision_request_id = decision_report_response.data.request_id;
    12} catch (error) {
    13 // handle error
    14}
    processor/signal/decision/report

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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.

    processor/signal/return/report

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    client_transaction_id
    requiredstringrequired, string
    Must be the same as the client_transaction_id supplied when calling /processor/signal/evaluate

    Min length: 1
    Max length: 36
    return_code
    requiredstringrequired, string
    Must be a valid ACH return code (e.g. "R01")
    If formatted incorrectly, this will result in an INVALID_FIELD error.
    returned_at
    stringstring
    Date and time when you receive the returns from your payment processors, in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ).

    Format: date-time
    Select Language
    1const return_report_request = {
    2 processor_token: 'processor-sandbox-71e02f71-0960-4a27-abd2-5631e04f2175',
    3 client_transaction_id: 'txn12345',
    4 return_code: 'R01',
    5};
    6
    7try {
    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 error
    15}
    processor/signal/return/report

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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.

    processor/signal/prepare

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    Select Language
    1const prepare_request = {
    2 processor_token: 'processor-sandbox-71e02f71-0960-4a27-abd2-5631e04f2175',
    3};
    4
    5try {
    6 const prepare_response =
    7 await plaidClient.processorSignalPrepare(prepare_request);
    8 const prepare_request_id = prepare_response.data.request_id;
    9} catch (error) {
    10 // handle error
    11}
    processor/signal/prepare

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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.

    processor/token/webhook/update

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    webhook
    requiredstringrequired, string
    The new webhook URL to associate with the processor token. To remove a webhook from a processor token, set to null.
    Select Language
    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 error
    9}
    processor/token/webhook/update

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    1{
    2 "request_id": "vYK11LNTfRoAMbj"
    3}
    Was this helpful?
    =*=*=*=

    /processor/transactions/sync

    Get incremental transaction updates on a processor token

    The /processor/transactions/sync endpoint retrieves transactions associated with an Item and can fetch updates using a cursor to track which updates have already been seen.
    For important instructions on integrating with /processor/transactions/sync, see the Transactions integration overview. If you are migrating from an existing integration using /processor/transactions/get, see the Transactions Sync migration guide.
    This endpoint supports credit, depository, and some loan-type accounts (only those with account subtype student). For investments accounts, use /investments/transactions/get instead.
    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 (e.g due to 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.
    If transactions data is not yet available for the Item, which can happen if the Item was not initialized with transactions during the /link/token/create call or if /processor/transactions/sync was called within a few seconds of Item creation, /processor/transactions/sync will return empty transactions arrays.
    Plaid typically checks for new transactions data between one and four times per day, depending on the institution. To find out when transactions were last updated for an Item, use the Item Debugger or call /item/get; the item.status.transactions.last_successful_update field will show the timestamp of the most recent successful update. To force Plaid to check for new transactions, use the /processor/transactions/refresh endpoint.
    To be alerted when new transactions are available, listen for the SYNC_UPDATES_AVAILABLE webhook.
    To receive Transactions webhooks for a processor token, set its webhook URL via the /processor/token/webhook/update endpoint.

    processor/transactions/sync

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    cursor
    stringstring
    The cursor value represents the last update requested. Providing it will cause the response to only return changes after this update. If omitted, the entire history of updates will be returned, starting with the first-added transactions on the item. Note: The upper-bound length of this cursor is 256 characters of base64.
    count
    integerinteger
    The number of transaction updates to fetch.

    Default: 100
    Minimum: 1
    Maximum: 500
    Exclusive min: false
    options
    objectobject
    An optional object to be used with the request. If specified, options must not be null.
    include_original_description
    booleanboolean
    Include the raw unparsed transaction description from the financial institution.

    Default: false
    days_requested
    integerinteger
    This field only applies to calls for Items where the Transactions product has not already been initialized (i.e., by specifying transactions in the products, required_if_supported_products, or optional_products array when calling /link/token/create or by making a previous call to /transactions/sync or /transactions/get). In those cases, the field controls the maximum number of days of transaction history that Plaid will request from the financial institution. The more transaction history is requested, the longer the historical update poll will take. If no value is specified, 90 days of history will be requested by default.
    If you are initializing your Items with transactions during the /link/token/create call (e.g. by including transactions in the /link/token/create products array), you must use the transactions.days_requested field in the /link/token/create request instead of in the /transactions/sync request.
    If the Item has already been initialized with the Transactions product, this field will have no effect. The maximum amount of transaction history to request on an Item cannot be updated if Transactions has already been added to the Item. To request older transaction history on an Item where Transactions has already been added, you must delete the Item via /item/remove and send the user through Link to create a new Item.
    Customers using Recurring Transactions should request at least 180 days of history for optimal results.


    Minimum: 1
    Maximum: 730
    Default: 90
    account_id
    stringstring
    If provided, the returned updates and cursor will only reflect the specified account's transactions. Omitting account_id returns updates for all accounts under the Item. Note that specifying an account_id effectively creates a separate incremental update stream—and therefore a separate cursor—for that account. If multiple accounts are queried this way, you will maintain multiple cursors, one per account_id.
    If you decide to begin filtering by account_id after using no account_id, start fresh with a null cursor and maintain separate (account_id, cursor) pairs going forward. Do not reuse any previously saved cursors, as this can cause pagination errors or incomplete data.
    Note: An error will be returned if a provided account_id is not associated with the Item.
    Select Language
    1// Provide a cursor from your database if you've previously
    2// received one for the Item. Leave null if this is your
    3// first sync call for this Item. The first request will
    4// return a cursor.
    5let cursor = database.getLatestCursorOrNull(itemId);
    6
    7// New transaction updates since "cursor"
    8let added: Array<Transaction> = [];
    9let modified: Array<Transaction> = [];
    10// Removed transaction ids
    11let removed: Array<RemovedTransaction> = [];
    12let hasMore = true;
    13
    14// Iterate through each page of new transaction updates for item
    15while (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;
    22
    23 // Add this page of results
    24 added = added.concat(data.added);
    25 modified = modified.concat(data.modified);
    26 removed = removed.concat(data.removed);
    27
    28 hasMore = data.has_more;
    29
    30 // Update cursor to the next cursor
    31 cursor = data.next_cursor;
    32}
    33
    34// Persist cursor and updated data
    35database.applyUpdates(itemId, added, modified, removed, cursor);
    processor/transactions/sync

    Response fields and example

    transactions_update_status
    stringstring
    A description of the update status for transaction pulls of an Item. This field contains the same information provided by transactions webhooks, and may be helpful for webhook troubleshooting or when recovering from missed webhooks.
    TRANSACTIONS_UPDATE_STATUS_UNKNOWN: Unable to fetch transactions update status for Item. NOT_READY: The Item is pending transaction pull. INITIAL_UPDATE_COMPLETE: Initial pull for the Item is complete, historical pull is pending. HISTORICAL_UPDATE_COMPLETE: Both initial and historical pull for Item are complete.


    Possible values: TRANSACTIONS_UPDATE_STATUS_UNKNOWN, NOT_READY, INITIAL_UPDATE_COMPLETE, HISTORICAL_UPDATE_COMPLETE
    account
    nullableobjectnullable, object
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    added
    [object][object]
    Transactions that have been added to the Item since cursor ordered by ascending last modified time.
    account_id
    stringstring
    The ID of the account in which this transaction occurred.
    amount
    numbernumber
    The settled value of the transaction, denominated in the transactions's currency, as stated in iso_currency_code or unofficial_currency_code. For all products except Income: 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. For Income endpoints, values are positive when representing income.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the transaction. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the transaction. Always 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_codes.
    check_number
    nullablestringnullable, string
    The check number of the transaction. This field is only populated for check transactions.
    date
    stringstring
    For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format ( YYYY-MM-DD ). To receive information about the date that a posted transaction was initiated, see the authorized_date field.

    Format: date
    location
    objectobject
    A representation of where a transaction took place
    address
    nullablestringnullable, string
    The street address where the transaction occurred.
    city
    nullablestringnullable, string
    The city where the transaction occurred.
    region
    nullablestringnullable, string
    The region or state where the transaction occurred. In API versions 2018-05-22 and earlier, this field is called state.
    postal_code
    nullablestringnullable, string
    The postal code where the transaction occurred. In API versions 2018-05-22 and earlier, this field is called zip.
    country
    nullablestringnullable, string
    The ISO 3166-1 alpha-2 country code where the transaction occurred.
    lat
    nullablenumbernullable, number
    The latitude where the transaction occurred.

    Format: double
    lon
    nullablenumbernullable, number
    The longitude where the transaction occurred.

    Format: double
    store_number
    nullablestringnullable, string
    The merchant defined store number where the transaction occurred.
    name
    stringstring
    The merchant name or transaction description.
    Note: This is a legacy field that is not actively maintained. Use merchant_name instead for the merchant 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
    nullablestringnullable, string
    The merchant name, as enriched by Plaid from the 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
    nullablestringnullable, string
    The string returned by the financial institution to describe the transaction. For transactions returned by /transactions/sync or /transactions/get, this field will only be included if the client has set options.include_original_description to true.
    payment_meta
    objectobject
    Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be 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
    nullablestringnullable, string
    The transaction reference number supplied by the financial institution.
    ppd_id
    nullablestringnullable, string
    The ACH PPD ID for the payer.
    payee
    nullablestringnullable, string
    For transfers, the party that is receiving the transaction.
    by_order_of
    nullablestringnullable, string
    The party initiating a wire transfer. Will be null if the transaction is not a wire transfer.
    payer
    nullablestringnullable, string
    For transfers, the party that is paying the transaction.
    payment_method
    nullablestringnullable, string
    The type of transfer, e.g. 'ACH'
    payment_processor
    nullablestringnullable, string
    The name of the payment processor
    reason
    nullablestringnullable, string
    The payer-supplied description of the transfer.
    pending
    booleanboolean
    When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. Not all institutions provide pending transactions.
    pending_transaction_id
    nullablestringnullable, string
    The ID of a posted transaction's associated pending transaction, where applicable. Not all institutions provide pending transactions.
    account_owner
    nullablestringnullable, string
    This field is not typically populated and only relevant when dealing with sub-accounts. A sub-account most commonly exists in cases where a single account is linked to multiple cards, each with its own card number and card holder name; each card will be considered a sub-account. If the account does have sub-accounts, this field will typically be some combination of the sub-account owner's name and/or the sub-account mask. The format of this field is not standardized and will vary based on institution.
    transaction_id
    stringstring
    The unique ID of the transaction. Like all Plaid identifiers, the transaction_id is case sensitive.
    transaction_type
    deprecatedstringdeprecated, string
    Please use the 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.


    Possible values: digital, place, special, unresolved
    logo_url
    nullablestringnullable, string
    The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file.
    website
    nullablestringnullable, string
    The website associated with this transaction, if available.
    authorized_date
    nullablestringnullable, string
    The date that the transaction was authorized. For posted transactions, the 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 ).

    Format: date
    authorized_datetime
    nullablestringnullable, string
    Date and time when a transaction was authorized in ISO 8601 format ( 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.


    Format: date-time
    datetime
    nullablestringnullable, string
    Date and time when a transaction was posted in ISO 8601 format ( 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.


    Format: date-time
    payment_channel
    stringstring
    The channel used to make a payment. 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.


    Possible values: online, in store, other
    personal_finance_category
    nullableobjectnullable, object
    Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases.
    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
    stringstring
    A high level category that communicates the broad category of the transaction.
    detailed
    stringstring
    A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided categories accurately describe the transaction intent.
    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
    nullablestringnullable, string
    An identifier classifying the transaction type.
    This field is only populated for European institutions. For institutions in the US and Canada, this field is set to null.
    adjustment: Bank adjustment
    atm: Cash deposit or withdrawal via an automated teller machine
    bank charge: Charge or fee levied by the institution
    bill payment: Payment of a bill
    cash: Cash deposit or withdrawal
    cashback: Cash withdrawal while making a debit card purchase
    cheque: Document ordering the payment of money to another person or organization
    direct debit: Automatic withdrawal of funds initiated by a third party at a regular interval
    interest: Interest earned or incurred
    purchase: Purchase made with a debit or credit card
    standing order: Payment instructed by the account holder to a third party at a regular interval
    transfer: Transfer of money between accounts


    Possible values: adjustment, atm, bank charge, bill payment, cash, cashback, cheque, direct debit, interest, purchase, standing order, transfer, null
    personal_finance_category_icon_url
    stringstring
    The URL of an icon associated with the primary personal finance category. The icon will always be 100×100 pixel PNG file.
    counterparties
    [object][object]
    The counterparties present in the transaction. Counterparties, such as the merchant or the financial institution, are extracted by Plaid from the raw description.
    name
    stringstring
    The name of the counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description.
    entity_id
    nullablestringnullable, string
    A unique, stable, Plaid-generated ID that maps to the counterparty.
    type
    stringstring
    The counterparty 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)


    Possible values: merchant, financial_institution, payment_app, marketplace, payment_terminal, income_source
    website
    nullablestringnullable, string
    The website associated with the counterparty.
    logo_url
    nullablestringnullable, string
    The URL of a logo associated with the counterparty, if available. The logo will always be 100×100 pixel PNG file.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided counterparty is involved in the transaction.
    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.
    account_numbers
    nullableobjectnullable, object
    Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe.
    bacs
    nullableobjectnullable, object
    Identifying information for a UK bank account via BACS.
    account
    nullablestringnullable, string
    The BACS account number for the account.
    sort_code
    nullablestringnullable, string
    The BACS sort code for the account.
    international
    nullableobjectnullable, object
    Account numbers using the International Bank Account Number and BIC/SWIFT code format.
    iban
    nullablestringnullable, string
    International Bank Account Number (IBAN).

    Min length: 15
    Max length: 34
    bic
    nullablestringnullable, string
    Bank identifier code (BIC) for this counterparty.

    Min length: 8
    Max length: 11
    merchant_entity_id
    nullablestringnullable, string
    A unique, stable, Plaid-generated ID that maps to the merchant. In the case of a merchant with multiple retail locations, this field will map to the broader merchant, not a specific location or store.
    modified
    [object][object]
    Transactions that have been modified on the Item since cursor ordered by ascending last modified time.
    account_id
    stringstring
    The ID of the account in which this transaction occurred.
    amount
    numbernumber
    The settled value of the transaction, denominated in the transactions's currency, as stated in iso_currency_code or unofficial_currency_code. For all products except Income: 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. For Income endpoints, values are positive when representing income.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the transaction. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the transaction. Always 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_codes.
    check_number
    nullablestringnullable, string
    The check number of the transaction. This field is only populated for check transactions.
    date
    stringstring
    For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format ( YYYY-MM-DD ). To receive information about the date that a posted transaction was initiated, see the authorized_date field.

    Format: date
    location
    objectobject
    A representation of where a transaction took place
    address
    nullablestringnullable, string
    The street address where the transaction occurred.
    city
    nullablestringnullable, string
    The city where the transaction occurred.
    region
    nullablestringnullable, string
    The region or state where the transaction occurred. In API versions 2018-05-22 and earlier, this field is called state.
    postal_code
    nullablestringnullable, string
    The postal code where the transaction occurred. In API versions 2018-05-22 and earlier, this field is called zip.
    country
    nullablestringnullable, string
    The ISO 3166-1 alpha-2 country code where the transaction occurred.
    lat
    nullablenumbernullable, number
    The latitude where the transaction occurred.

    Format: double
    lon
    nullablenumbernullable, number
    The longitude where the transaction occurred.

    Format: double
    store_number
    nullablestringnullable, string
    The merchant defined store number where the transaction occurred.
    name
    stringstring
    The merchant name or transaction description.
    Note: This is a legacy field that is not actively maintained. Use merchant_name instead for the merchant 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
    nullablestringnullable, string
    The merchant name, as enriched by Plaid from the 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
    nullablestringnullable, string
    The string returned by the financial institution to describe the transaction. For transactions returned by /transactions/sync or /transactions/get, this field will only be included if the client has set options.include_original_description to true.
    payment_meta
    objectobject
    Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be 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
    nullablestringnullable, string
    The transaction reference number supplied by the financial institution.
    ppd_id
    nullablestringnullable, string
    The ACH PPD ID for the payer.
    payee
    nullablestringnullable, string
    For transfers, the party that is receiving the transaction.
    by_order_of
    nullablestringnullable, string
    The party initiating a wire transfer. Will be null if the transaction is not a wire transfer.
    payer
    nullablestringnullable, string
    For transfers, the party that is paying the transaction.
    payment_method
    nullablestringnullable, string
    The type of transfer, e.g. 'ACH'
    payment_processor
    nullablestringnullable, string
    The name of the payment processor
    reason
    nullablestringnullable, string
    The payer-supplied description of the transfer.
    pending
    booleanboolean
    When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. Not all institutions provide pending transactions.
    pending_transaction_id
    nullablestringnullable, string
    The ID of a posted transaction's associated pending transaction, where applicable. Not all institutions provide pending transactions.
    account_owner
    nullablestringnullable, string
    This field is not typically populated and only relevant when dealing with sub-accounts. A sub-account most commonly exists in cases where a single account is linked to multiple cards, each with its own card number and card holder name; each card will be considered a sub-account. If the account does have sub-accounts, this field will typically be some combination of the sub-account owner's name and/or the sub-account mask. The format of this field is not standardized and will vary based on institution.
    transaction_id
    stringstring
    The unique ID of the transaction. Like all Plaid identifiers, the transaction_id is case sensitive.
    transaction_type
    deprecatedstringdeprecated, string
    Please use the 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.


    Possible values: digital, place, special, unresolved
    logo_url
    nullablestringnullable, string
    The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file.
    website
    nullablestringnullable, string
    The website associated with this transaction, if available.
    authorized_date
    nullablestringnullable, string
    The date that the transaction was authorized. For posted transactions, the 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 ).

    Format: date
    authorized_datetime
    nullablestringnullable, string
    Date and time when a transaction was authorized in ISO 8601 format ( 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.


    Format: date-time
    datetime
    nullablestringnullable, string
    Date and time when a transaction was posted in ISO 8601 format ( 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.


    Format: date-time
    payment_channel
    stringstring
    The channel used to make a payment. 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.


    Possible values: online, in store, other
    personal_finance_category
    nullableobjectnullable, object
    Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases.
    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
    stringstring
    A high level category that communicates the broad category of the transaction.
    detailed
    stringstring
    A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided categories accurately describe the transaction intent.
    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
    nullablestringnullable, string
    An identifier classifying the transaction type.
    This field is only populated for European institutions. For institutions in the US and Canada, this field is set to null.
    adjustment: Bank adjustment
    atm: Cash deposit or withdrawal via an automated teller machine
    bank charge: Charge or fee levied by the institution
    bill payment: Payment of a bill
    cash: Cash deposit or withdrawal
    cashback: Cash withdrawal while making a debit card purchase
    cheque: Document ordering the payment of money to another person or organization
    direct debit: Automatic withdrawal of funds initiated by a third party at a regular interval
    interest: Interest earned or incurred
    purchase: Purchase made with a debit or credit card
    standing order: Payment instructed by the account holder to a third party at a regular interval
    transfer: Transfer of money between accounts


    Possible values: adjustment, atm, bank charge, bill payment, cash, cashback, cheque, direct debit, interest, purchase, standing order, transfer, null
    personal_finance_category_icon_url
    stringstring
    The URL of an icon associated with the primary personal finance category. The icon will always be 100×100 pixel PNG file.
    counterparties
    [object][object]
    The counterparties present in the transaction. Counterparties, such as the merchant or the financial institution, are extracted by Plaid from the raw description.
    name
    stringstring
    The name of the counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description.
    entity_id
    nullablestringnullable, string
    A unique, stable, Plaid-generated ID that maps to the counterparty.
    type
    stringstring
    The counterparty 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)


    Possible values: merchant, financial_institution, payment_app, marketplace, payment_terminal, income_source
    website
    nullablestringnullable, string
    The website associated with the counterparty.
    logo_url
    nullablestringnullable, string
    The URL of a logo associated with the counterparty, if available. The logo will always be 100×100 pixel PNG file.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided counterparty is involved in the transaction.
    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.
    account_numbers
    nullableobjectnullable, object
    Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe.
    bacs
    nullableobjectnullable, object
    Identifying information for a UK bank account via BACS.
    account
    nullablestringnullable, string
    The BACS account number for the account.
    sort_code
    nullablestringnullable, string
    The BACS sort code for the account.
    international
    nullableobjectnullable, object
    Account numbers using the International Bank Account Number and BIC/SWIFT code format.
    iban
    nullablestringnullable, string
    International Bank Account Number (IBAN).

    Min length: 15
    Max length: 34
    bic
    nullablestringnullable, string
    Bank identifier code (BIC) for this counterparty.

    Min length: 8
    Max length: 11
    merchant_entity_id
    nullablestringnullable, string
    A unique, stable, Plaid-generated ID that maps to the merchant. In the case of a merchant with multiple retail locations, this field will map to the broader merchant, not a specific location or store.
    removed
    [object][object]
    Transactions that have been removed from the Item since cursor ordered by ascending last modified time.
    transaction_id
    stringstring
    The ID of the removed transaction.
    account_id
    stringstring
    The ID of the account of the removed transaction.
    next_cursor
    stringstring
    Cursor used for fetching any future updates after the latest update provided in this response. The cursor obtained after all pages have been pulled (indicated by 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
    booleanboolean
    Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with 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
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    11 "mask": "0000",
    12 "name": "Plaid Checking",
    13 "official_name": "Plaid Gold Standard 0% Interest Checking",
    14 "subtype": "checking",
    15 "type": "depository"
    16 },
    17 "added": [
    18 {
    19 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",
    20 "account_owner": null,
    21 "amount": 72.1,
    22 "iso_currency_code": "USD",
    23 "unofficial_currency_code": null,
    24 "check_number": null,
    25 "counterparties": [
    26 {
    27 "name": "Walmart",
    28 "type": "merchant",
    29 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",
    30 "website": "walmart.com",
    31 "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",
    32 "confidence_level": "VERY_HIGH"
    33 }
    34 ],
    35 "date": "2023-09-24",
    36 "datetime": "2023-09-24T11:01:01Z",
    37 "authorized_date": "2023-09-22",
    38 "authorized_datetime": "2023-09-22T10:34:50Z",
    39 "location": {
    40 "address": "13425 Community Rd",
    41 "city": "Poway",
    42 "region": "CA",
    43 "postal_code": "92064",
    44 "country": "US",
    45 "lat": 32.959068,
    46 "lon": -117.037666,
    47 "store_number": "1700"
    48 },
    49 "name": "PURCHASE WM SUPERCENTER #1700",
    50 "merchant_name": "Walmart",
    51 "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",
    52 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",
    53 "website": "walmart.com",
    54 "payment_meta": {
    55 "by_order_of": null,
    56 "payee": null,
    57 "payer": null,
    58 "payment_method": null,
    59 "payment_processor": null,
    60 "ppd_id": null,
    61 "reason": null,
    62 "reference_number": null
    63 },
    64 "payment_channel": "in store",
    65 "pending": false,
    66 "pending_transaction_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nc",
    67 "personal_finance_category": {
    68 "primary": "GENERAL_MERCHANDISE",
    69 "detailed": "GENERAL_MERCHANDISE_SUPERSTORES",
    70 "confidence_level": "VERY_HIGH"
    71 },
    72 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png",
    73 "transaction_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDje",
    74 "transaction_code": null,
    75 "transaction_type": "place"
    76 }
    77 ],
    78 "modified": [
    79 {
    80 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",
    81 "account_owner": null,
    82 "amount": 28.34,
    83 "iso_currency_code": "USD",
    84 "unofficial_currency_code": null,
    85 "check_number": null,
    86 "counterparties": [
    87 {
    88 "name": "DoorDash",
    89 "type": "marketplace",
    90 "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png",
    91 "website": "doordash.com",
    92 "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm",
    93 "confidence_level": "HIGH"
    94 },
    95 {
    96 "name": "Burger King",
    97 "type": "merchant",
    98 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",
    99 "website": "burgerking.com",
    100 "entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",
    101 "confidence_level": "VERY_HIGH"
    102 }
    103 ],
    104 "date": "2023-09-28",
    105 "datetime": "2023-09-28T15:10:09Z",
    106 "authorized_date": "2023-09-27",
    107 "authorized_datetime": "2023-09-27T08:01:58Z",
    108 "location": {
    109 "address": null,
    110 "city": null,
    111 "region": null,
    112 "postal_code": null,
    113 "country": null,
    114 "lat": null,
    115 "lon": null,
    116 "store_number": null
    117 },
    118 "name": "Dd Doordash Burgerkin",
    119 "merchant_name": "Burger King",
    120 "merchant_entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",
    121 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",
    122 "website": "burgerking.com",
    123 "payment_meta": {
    124 "by_order_of": null,
    125 "payee": null,
    126 "payer": null,
    127 "payment_method": null,
    128 "payment_processor": null,
    129 "ppd_id": null,
    130 "reason": null,
    131 "reference_number": null
    132 },
    133 "payment_channel": "online",
    134 "pending": true,
    135 "pending_transaction_id": null,
    136 "personal_finance_category": {
    137 "primary": "FOOD_AND_DRINK",
    138 "detailed": "FOOD_AND_DRINK_FAST_FOOD",
    139 "confidence_level": "VERY_HIGH"
    140 },
    141 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png",
    142 "transaction_id": "yhnUVvtcGGcCKU0bcz8PDQr5ZUxUXebUvbKC0",
    143 "transaction_code": null,
    144 "transaction_type": "digital"
    145 }
    146 ],
    147 "removed": [
    148 {
    149 "transaction_id": "CmdQTNgems8BT1B7ibkoUXVPyAeehT3Tmzk0l",
    150 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp"
    151 }
    152 ],
    153 "next_cursor": "tVUUL15lYQN5rBnfDIc1I8xudpGdIlw9nsgeXWvhOfkECvUeR663i3Dt1uf/94S8ASkitgLcIiOSqNwzzp+bh89kirazha5vuZHBb2ZA5NtCDkkV",
    154 "has_more": false,
    155 "request_id": "45QSn",
    156 "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE"
    157}
    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.

    processor/transactions/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    objectobject
    An optional object to be used with the request. If specified, options must not be null.
    count
    integerinteger
    The number of transactions to fetch.

    Default: 100
    Minimum: 1
    Maximum: 500
    Exclusive min: false
    offset
    integerinteger
    The number of transactions to skip. The default value is 0.

    Default: 0
    Minimum: 0
    include_original_description
    booleanboolean
    Include the raw unparsed transaction description from the financial institution.

    Default: false
    processor_token
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    start_date
    requiredstringrequired, string
    The earliest date for which data should be returned. Dates should be formatted as YYYY-MM-DD.

    Format: date
    end_date
    requiredstringrequired, string
    The latest date for which data should be returned. Dates should be formatted as YYYY-MM-DD.

    Format: date
    Select Language
    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 paginate
    11 // transactions and retrieve all available data
    12 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 error
    28}
    processor/transactions/get

    Response fields and example

    account
    objectobject
    A single account at a financial institution.
    account_id
    stringstring
    Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new 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
    objectobject
    A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by /accounts/balance/get.
    available
    nullablenumbernullable, number
    The amount of funds available to be withdrawn from the account, as determined by the financial institution.
    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.


    Format: double
    current
    nullablenumbernullable, number
    The total amount of funds in or owed by the account.
    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. Similar to credit-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder.
    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.


    Format: double
    limit
    nullablenumbernullable, number
    For 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.


    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the balance. Always 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 unofficial_currency_codes.
    last_updated_datetime
    nullablestringnullable, string
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time the balance was updated.
    This field is returned only when the institution is ins_128026 (Capital One).


    Format: date-time
    mask
    nullablestringnullable, string
    The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
    name
    stringstring
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestringnullable, string
    The official name of the account as given by the financial institution
    type
    stringstring
    investment: Investment account. In API versions 2018-05-22 and earlier, this type is called brokerage instead.
    credit: Credit card
    depository: Depository account
    loan: Loan account
    other: Non-specified account type
    See the Account type schema for a full listing of account types and corresponding subtypes.


    Possible values: investment, credit, depository, loan, brokerage, other
    subtype
    nullablestringnullable, string
    See the Account type schema for a full listing of account types and corresponding subtypes.

    Possible values: 401a, 401k, 403B, 457b, 529, auto, brokerage, business, cash isa, cash management, cd, checking, commercial, construction, consumer, credit card, crypto exchange, ebt, education savings account, fixed annuity, gic, health reimbursement arrangement, home equity, hsa, isa, ira, keogh, lif, life insurance, line of credit, lira, loan, lrif, lrsp, money market, mortgage, mutual fund, non-custodial wallet, non-taxable brokerage account, other, other insurance, other annuity, overdraft, paypal, payroll, pension, prepaid, prif, profit sharing plan, rdsp, resp, retirement, rlif, roth, roth 401k, rrif, rrsp, sarsep, savings, sep ira, simple ira, sipp, stock plan, student, thrift savings plan, tfsa, trust, ugma, utma, variable annuity
    verification_status
    stringstring
    The current verification status of an Auth Item initiated through micro-deposits or database verification. Returned for Auth Items only.
    pending_automatic_verification: The Item is pending automatic verification
    pending_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 verified
    verification_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.
    unsent: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit.
    database_matched: The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match.
    database_insights_pass: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth.
    database_insights_pass_with_caution:The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth.
    database_insights_fail: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth.


    Possible values: automatically_verified, pending_automatic_verification, pending_manual_verification, unsent, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    stringstring
    The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the user.legal_name request field in /link/token/create for the Link session that created the Item.
    verification_insights
    objectobject
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableintegernullable, integer
    Indicates the score of the name match between the given name provided during database verification (available in the verification_name field) and matched Plaid network accounts. If defined, will be a value between 0 and 100. Will be undefined if name matching was not enabled for the database verification session or if there were no eligible Plaid network matches to compare the given name with.
    network_status
    objectobject
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    booleanboolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    booleanboolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    objectobject
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    booleanboolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    stringstring
    Indicator of account number format validity for institution.
    valid: indicates that the account number has a correct format for the institution.
    invalid: indicates that the account number has an incorrect format for the institution.
    unknown: indicates that there was not enough information to determine whether the format is correct for the institution.


    Possible values: valid, invalid, unknown
    persistent_account_id
    stringstring
    A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (ins_56, ins_13) as well as the OAuth Sandbox institution (ins_127287); in Production, it will only be populated for accounts at applicable institutions.
    holder_category
    nullablestringnullable, string
    Indicates the account's categorization as either a personal or a business account. This field is currently in beta; to request access, contact your account manager.

    Possible values: business, personal, unrecognized
    transactions
    [object][object]
    An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the count parameter.
    account_id
    stringstring
    The ID of the account in which this transaction occurred.
    amount
    numbernumber
    The settled value of the transaction, denominated in the transactions's currency, as stated in iso_currency_code or unofficial_currency_code. For all products except Income: 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. For Income endpoints, values are positive when representing income.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the transaction. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code associated with the transaction. Always 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_codes.
    check_number
    nullablestringnullable, string
    The check number of the transaction. This field is only populated for check transactions.
    date
    stringstring
    For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format ( YYYY-MM-DD ). To receive information about the date that a posted transaction was initiated, see the authorized_date field.

    Format: date
    location
    objectobject
    A representation of where a transaction took place
    address
    nullablestringnullable, string
    The street address where the transaction occurred.
    city
    nullablestringnullable, string
    The city where the transaction occurred.
    region
    nullablestringnullable, string
    The region or state where the transaction occurred. In API versions 2018-05-22 and earlier, this field is called state.
    postal_code
    nullablestringnullable, string
    The postal code where the transaction occurred. In API versions 2018-05-22 and earlier, this field is called zip.
    country
    nullablestringnullable, string
    The ISO 3166-1 alpha-2 country code where the transaction occurred.
    lat
    nullablenumbernullable, number
    The latitude where the transaction occurred.

    Format: double
    lon
    nullablenumbernullable, number
    The longitude where the transaction occurred.

    Format: double
    store_number
    nullablestringnullable, string
    The merchant defined store number where the transaction occurred.
    name
    stringstring
    The merchant name or transaction description.
    Note: This is a legacy field that is not actively maintained. Use merchant_name instead for the merchant 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
    nullablestringnullable, string
    The merchant name, as enriched by Plaid from the 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
    nullablestringnullable, string
    The string returned by the financial institution to describe the transaction. For transactions returned by /transactions/sync or /transactions/get, this field will only be included if the client has set options.include_original_description to true.
    payment_meta
    objectobject
    Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be 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
    nullablestringnullable, string
    The transaction reference number supplied by the financial institution.
    ppd_id
    nullablestringnullable, string
    The ACH PPD ID for the payer.
    payee
    nullablestringnullable, string
    For transfers, the party that is receiving the transaction.
    by_order_of
    nullablestringnullable, string
    The party initiating a wire transfer. Will be null if the transaction is not a wire transfer.
    payer
    nullablestringnullable, string
    For transfers, the party that is paying the transaction.
    payment_method
    nullablestringnullable, string
    The type of transfer, e.g. 'ACH'
    payment_processor
    nullablestringnullable, string
    The name of the payment processor
    reason
    nullablestringnullable, string
    The payer-supplied description of the transfer.
    pending
    booleanboolean
    When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. Not all institutions provide pending transactions.
    pending_transaction_id
    nullablestringnullable, string
    The ID of a posted transaction's associated pending transaction, where applicable. Not all institutions provide pending transactions.
    account_owner
    nullablestringnullable, string
    This field is not typically populated and only relevant when dealing with sub-accounts. A sub-account most commonly exists in cases where a single account is linked to multiple cards, each with its own card number and card holder name; each card will be considered a sub-account. If the account does have sub-accounts, this field will typically be some combination of the sub-account owner's name and/or the sub-account mask. The format of this field is not standardized and will vary based on institution.
    transaction_id
    stringstring
    The unique ID of the transaction. Like all Plaid identifiers, the transaction_id is case sensitive.
    transaction_type
    deprecatedstringdeprecated, string
    Please use the 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.


    Possible values: digital, place, special, unresolved
    logo_url
    nullablestringnullable, string
    The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file.
    website
    nullablestringnullable, string
    The website associated with this transaction, if available.
    authorized_date
    nullablestringnullable, string
    The date that the transaction was authorized. For posted transactions, the 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 ).

    Format: date
    authorized_datetime
    nullablestringnullable, string
    Date and time when a transaction was authorized in ISO 8601 format ( 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.


    Format: date-time
    datetime
    nullablestringnullable, string
    Date and time when a transaction was posted in ISO 8601 format ( 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.


    Format: date-time
    payment_channel
    stringstring
    The channel used to make a payment. 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.


    Possible values: online, in store, other
    personal_finance_category
    nullableobjectnullable, object
    Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases.
    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
    stringstring
    A high level category that communicates the broad category of the transaction.
    detailed
    stringstring
    A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided categories accurately describe the transaction intent.
    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
    nullablestringnullable, string
    An identifier classifying the transaction type.
    This field is only populated for European institutions. For institutions in the US and Canada, this field is set to null.
    adjustment: Bank adjustment
    atm: Cash deposit or withdrawal via an automated teller machine
    bank charge: Charge or fee levied by the institution
    bill payment: Payment of a bill
    cash: Cash deposit or withdrawal
    cashback: Cash withdrawal while making a debit card purchase
    cheque: Document ordering the payment of money to another person or organization
    direct debit: Automatic withdrawal of funds initiated by a third party at a regular interval
    interest: Interest earned or incurred
    purchase: Purchase made with a debit or credit card
    standing order: Payment instructed by the account holder to a third party at a regular interval
    transfer: Transfer of money between accounts


    Possible values: adjustment, atm, bank charge, bill payment, cash, cashback, cheque, direct debit, interest, purchase, standing order, transfer, null
    personal_finance_category_icon_url
    stringstring
    The URL of an icon associated with the primary personal finance category. The icon will always be 100×100 pixel PNG file.
    counterparties
    [object][object]
    The counterparties present in the transaction. Counterparties, such as the merchant or the financial institution, are extracted by Plaid from the raw description.
    name
    stringstring
    The name of the counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description.
    entity_id
    nullablestringnullable, string
    A unique, stable, Plaid-generated ID that maps to the counterparty.
    type
    stringstring
    The counterparty 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)


    Possible values: merchant, financial_institution, payment_app, marketplace, payment_terminal, income_source
    website
    nullablestringnullable, string
    The website associated with the counterparty.
    logo_url
    nullablestringnullable, string
    The URL of a logo associated with the counterparty, if available. The logo will always be 100×100 pixel PNG file.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided counterparty is involved in the transaction.
    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.
    account_numbers
    nullableobjectnullable, object
    Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe.
    bacs
    nullableobjectnullable, object
    Identifying information for a UK bank account via BACS.
    account
    nullablestringnullable, string
    The BACS account number for the account.
    sort_code
    nullablestringnullable, string
    The BACS sort code for the account.
    international
    nullableobjectnullable, object
    Account numbers using the International Bank Account Number and BIC/SWIFT code format.
    iban
    nullablestringnullable, string
    International Bank Account Number (IBAN).

    Min length: 15
    Max length: 34
    bic
    nullablestringnullable, string
    Bank identifier code (BIC) for this counterparty.

    Min length: 8
    Max length: 11
    merchant_entity_id
    nullablestringnullable, string
    A unique, stable, Plaid-generated ID that maps to the merchant. In the case of a merchant with multiple retail locations, this field will map to the broader merchant, not a specific location or store.
    total_transactions
    integerinteger
    The total number of transactions available within the date range specified. If 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
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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": null
    10 },
    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 "check_number": null,
    25 "counterparties": [
    26 {
    27 "name": "DoorDash",
    28 "type": "marketplace",
    29 "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png",
    30 "website": "doordash.com",
    31 "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm",
    32 "confidence_level": "HIGH"
    33 },
    34 {
    35 "name": "Burger King",
    36 "type": "merchant",
    37 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",
    38 "website": "burgerking.com",
    39 "entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",
    40 "confidence_level": "VERY_HIGH"
    41 }
    42 ],
    43 "date": "2023-09-28",
    44 "datetime": "2023-09-28T15:10:09Z",
    45 "authorized_date": "2023-09-27",
    46 "authorized_datetime": "2023-09-27T08:01:58Z",
    47 "location": {
    48 "address": null,
    49 "city": null,
    50 "region": null,
    51 "postal_code": null,
    52 "country": null,
    53 "lat": null,
    54 "lon": null,
    55 "store_number": null
    56 },
    57 "name": "Dd Doordash Burgerkin",
    58 "merchant_name": "Burger King",
    59 "merchant_entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1",
    60 "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png",
    61 "website": "burgerking.com",
    62 "payment_meta": {
    63 "by_order_of": null,
    64 "payee": null,
    65 "payer": null,
    66 "payment_method": null,
    67 "payment_processor": null,
    68 "ppd_id": null,
    69 "reason": null,
    70 "reference_number": null
    71 },
    72 "payment_channel": "online",
    73 "pending": true,
    74 "pending_transaction_id": null,
    75 "personal_finance_category": {
    76 "primary": "FOOD_AND_DRINK",
    77 "detailed": "FOOD_AND_DRINK_FAST_FOOD",
    78 "confidence_level": "VERY_HIGH"
    79 },
    80 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png",
    81 "transaction_id": "yhnUVvtcGGcCKU0bcz8PDQr5ZUxUXebUvbKC0",
    82 "transaction_code": null,
    83 "transaction_type": "digital"
    84 },
    85 {
    86 "account_id": "BxBXxLj1m4HMXBm9WZZmCWVbPjX16EHwv99vp",
    87 "account_owner": null,
    88 "amount": 72.1,
    89 "iso_currency_code": "USD",
    90 "unofficial_currency_code": null,
    91 "check_number": null,
    92 "counterparties": [
    93 {
    94 "name": "Walmart",
    95 "type": "merchant",
    96 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",
    97 "website": "walmart.com",
    98 "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",
    99 "confidence_level": "VERY_HIGH"
    100 }
    101 ],
    102 "date": "2023-09-24",
    103 "datetime": "2023-09-24T11:01:01Z",
    104 "authorized_date": "2023-09-22",
    105 "authorized_datetime": "2023-09-22T10:34:50Z",
    106 "location": {
    107 "address": "13425 Community Rd",
    108 "city": "Poway",
    109 "region": "CA",
    110 "postal_code": "92064",
    111 "country": "US",
    112 "lat": 32.959068,
    113 "lon": -117.037666,
    114 "store_number": "1700"
    115 },
    116 "name": "PURCHASE WM SUPERCENTER #1700",
    117 "merchant_name": "Walmart",
    118 "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM",
    119 "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png",
    120 "website": "walmart.com",
    121 "payment_meta": {
    122 "by_order_of": null,
    123 "payee": null,
    124 "payer": null,
    125 "payment_method": null,
    126 "payment_processor": null,
    127 "ppd_id": null,
    128 "reason": null,
    129 "reference_number": null
    130 },
    131 "payment_channel": "in store",
    132 "pending": false,
    133 "pending_transaction_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nc",
    134 "personal_finance_category": {
    135 "primary": "GENERAL_MERCHANDISE",
    136 "detailed": "GENERAL_MERCHANDISE_SUPERSTORES",
    137 "confidence_level": "VERY_HIGH"
    138 },
    139 "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png",
    140 "transaction_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDje",
    141 "transaction_code": null,
    142 "transaction_type": "place"
    143 }
    144 ],
    145 "total_transactions": 1,
    146 "request_id": "Wvhy9PZHQLV8njG"
    147}
    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.

    processor/transactions/recurring/get

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    Select Language
    1const request: ProcessorTransactionsGetRequest = {
    2 processor_token: processorToken
    3};
    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 error
    11}
    processor/transactions/recurring/get

    Response fields and example

    inflow_streams
    [object][object]
    An array of depository transaction streams.
    account_id
    stringstring
    The ID of the account to which the stream belongs
    stream_id
    stringstring
    A unique id for the stream
    description
    stringstring
    A description of the transaction stream.
    merchant_name
    nullablestringnullable, string
    The merchant associated with the transaction stream.
    first_date
    stringstring
    The posted date of the earliest transaction in the stream.

    Format: date
    last_date
    stringstring
    The posted date of the latest transaction in the stream.

    Format: date
    predicted_next_date
    nullablestringnullable, string
    The predicted date of the next payment. This will only be set if the next payment date can be predicted.

    Format: date
    frequency
    stringstring
    Describes the frequency of the transaction stream.
    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.


    Possible values: UNKNOWN, WEEKLY, BIWEEKLY, SEMI_MONTHLY, MONTHLY, ANNUALLY
    transaction_ids
    [string][string]
    An array of Plaid transaction IDs belonging to the stream, sorted by posted date.
    average_amount
    objectobject
    Object with data pertaining to an amount on the transaction stream.
    amount
    numbernumber
    Represents the numerical value of an amount.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the amount. Always null if unofficial_currency_code is non-null.
    See the currency code schema for a full listing of supported iso_currency_codes.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code of the amount. Always 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
    objectobject
    Object with data pertaining to an amount on the transaction stream.
    amount
    numbernumber
    Represents the numerical value of an amount.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the amount. Always null if unofficial_currency_code is non-null.
    See the currency code schema for a full listing of supported iso_currency_codes.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code of the amount. Always 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
    booleanboolean
    Indicates whether the transaction stream is still live.
    status
    stringstring
    The current status of the transaction stream.
    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.


    Possible values: UNKNOWN, MATURE, EARLY_DETECTION, TOMBSTONED
    personal_finance_category
    nullableobjectnullable, object
    Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases.
    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
    stringstring
    A high level category that communicates the broad category of the transaction.
    detailed
    stringstring
    A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided categories accurately describe the transaction intent.
    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
    deprecatedbooleandeprecated, boolean
    As the ability to modify transactions streams has been discontinued, this field will always be false.
    outflow_streams
    [object][object]
    An array of expense transaction streams.
    account_id
    stringstring
    The ID of the account to which the stream belongs
    stream_id
    stringstring
    A unique id for the stream
    description
    stringstring
    A description of the transaction stream.
    merchant_name
    nullablestringnullable, string
    The merchant associated with the transaction stream.
    first_date
    stringstring
    The posted date of the earliest transaction in the stream.

    Format: date
    last_date
    stringstring
    The posted date of the latest transaction in the stream.

    Format: date
    predicted_next_date
    nullablestringnullable, string
    The predicted date of the next payment. This will only be set if the next payment date can be predicted.

    Format: date
    frequency
    stringstring
    Describes the frequency of the transaction stream.
    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.


    Possible values: UNKNOWN, WEEKLY, BIWEEKLY, SEMI_MONTHLY, MONTHLY, ANNUALLY
    transaction_ids
    [string][string]
    An array of Plaid transaction IDs belonging to the stream, sorted by posted date.
    average_amount
    objectobject
    Object with data pertaining to an amount on the transaction stream.
    amount
    numbernumber
    Represents the numerical value of an amount.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the amount. Always null if unofficial_currency_code is non-null.
    See the currency code schema for a full listing of supported iso_currency_codes.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code of the amount. Always 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
    objectobject
    Object with data pertaining to an amount on the transaction stream.
    amount
    numbernumber
    Represents the numerical value of an amount.

    Format: double
    iso_currency_code
    nullablestringnullable, string
    The ISO-4217 currency code of the amount. Always null if unofficial_currency_code is non-null.
    See the currency code schema for a full listing of supported iso_currency_codes.
    unofficial_currency_code
    nullablestringnullable, string
    The unofficial currency code of the amount. Always 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
    booleanboolean
    Indicates whether the transaction stream is still live.
    status
    stringstring
    The current status of the transaction stream.
    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.


    Possible values: UNKNOWN, MATURE, EARLY_DETECTION, TOMBSTONED
    personal_finance_category
    nullableobjectnullable, object
    Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases.
    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
    stringstring
    A high level category that communicates the broad category of the transaction.
    detailed
    stringstring
    A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
    confidence_level
    nullablestringnullable, string
    A description of how confident we are that the provided categories accurately describe the transaction intent.
    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
    deprecatedbooleandeprecated, boolean
    As the ability to modify transactions streams has been discontinued, this field will always be false.
    updated_datetime
    stringstring
    Timestamp in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time transaction streams for the given account were updated on

    Format: date-time
    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    1{
    2 "updated_datetime": "2022-05-01T00:00:00Z",
    3 "inflow_streams": [
    4 {
    5 "account_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDje",
    6 "stream_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nc",
    7 "category": null,
    8 "category_id": null,
    9 "description": "Platypus Payroll",
    10 "merchant_name": null,
    11 "personal_finance_category": {
    12 "primary": "INCOME",
    13 "detailed": "INCOME_WAGES",
    14 "confidence_level": "UNKNOWN"
    15 },
    16 "first_date": "2022-02-28",
    17 "last_date": "2022-04-30",
    18 "predicted_next_date": "2022-05-15",
    19 "frequency": "SEMI_MONTHLY",
    20 "transaction_ids": [
    21 "nkeaNrDGrhdo6c4qZWDA8ekuIPuJ4Avg5nKfw",
    22 "EfC5ekksdy30KuNzad2tQupW8WIPwvjXGbGHL",
    23 "ozfvj3FFgp6frbXKJGitsDzck5eWQH7zOJBYd",
    24 "QvdDE8AqVWo3bkBZ7WvCd7LskxVix8Q74iMoK",
    25 "uQozFPfMzibBouS9h9tz4CsyvFll17jKLdPAF"
    26 ],
    27 "average_amount": {
    28 "amount": -800,
    29 "iso_currency_code": "USD",
    30 "unofficial_currency_code": null
    31 },
    32 "last_amount": {
    33 "amount": -1000,
    34 "iso_currency_code": "USD",
    35 "unofficial_currency_code": null
    36 },
    37 "is_active": true,
    38 "status": "MATURE",
    39 "is_user_modified": false
    40 }
    41 ],
    42 "outflow_streams": [
    43 {
    44 "account_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDff",
    45 "stream_id": "no86Eox18VHMvaOVL7gPUM9ap3aR1LsAVZ5nd",
    46 "category": null,
    47 "category_id": null,
    48 "description": "ConEd Bill Payment",
    49 "merchant_name": "ConEd",
    50 "personal_finance_category": {
    51 "primary": "RENT_AND_UTILITIES",
    52 "detailed": "RENT_AND_UTILITIES_GAS_AND_ELECTRICITY",
    53 "confidence_level": "UNKNOWN"
    54 },
    55 "first_date": "2022-02-04",
    56 "last_date": "2022-05-02",
    57 "predicted_next_date": "2022-06-02",
    58 "frequency": "MONTHLY",
    59 "transaction_ids": [
    60 "yhnUVvtcGGcCKU0bcz8PDQr5ZUxUXebUvbKC0",
    61 "HPDnUVgI5Pa0YQSl0rxwYRwVXeLyJXTWDAvpR",
    62 "jEPoSfF8xzMClE9Ohj1he91QnvYoSdwg7IT8L",
    63 "CmdQTNgems8BT1B7ibkoUXVPyAeehT3Tmzk0l"
    64 ],
    65 "average_amount": {
    66 "amount": 85,
    67 "iso_currency_code": "USD",
    68 "unofficial_currency_code": null
    69 },
    70 "last_amount": {
    71 "amount": 100,
    72 "iso_currency_code": "USD",
    73 "unofficial_currency_code": null
    74 },
    75 "is_active": true,
    76 "status": "MATURE",
    77 "is_user_modified": false
    78 },
    79 {
    80 "account_id": "lPNjeW1nR6CDn5okmGQ6hEpMo4lLNoSrzqDff",
    81 "stream_id": "SrBNJZDuUMweodmPmSOeOImwsWt53ZXfJQAfC",
    82 "category": null,
    83 "category_id": null,
    84 "description": "Costco Annual Membership",
    85 "merchant_name": "Costco",
    86 "personal_finance_category": {
    87 "primary": "GENERAL_MERCHANDISE",
    88 "detailed": "GENERAL_MERCHANDISE_SUPERSTORES",
    89 "confidence_level": "UNKNOWN"
    90 },
    91 "first_date": "2022-01-23",
    92 "last_date": "2023-01-22",
    93 "predicted_next_date": "2024-01-22",
    94 "frequency": "ANNUALLY",
    95 "transaction_ids": [
    96 "yqEBJ72cS4jFwcpxJcDuQr94oAQ1R1lMC33D4",
    97 "Kz5Hm3cZCgpn4tMEKUGAGD6kAcxMBsEZDSwJJ"
    98 ],
    99 "average_amount": {
    100 "amount": 120,
    101 "iso_currency_code": "USD",
    102 "unofficial_currency_code": null
    103 },
    104 "last_amount": {
    105 "amount": 120,
    106 "iso_currency_code": "USD",
    107 "unofficial_currency_code": null
    108 },
    109 "is_active": true,
    110 "status": "MATURE",
    111 "is_user_modified": false
    112 }
    113 ],
    114 "request_id": "tbFyCEqkU775ZGG"
    115}
    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 /transactions/refresh endpoint is not supported for Capital One (ins_128026) non-depository accounts and will result in a PRODUCTS_NOT_SUPPORTED error if called on an Item that contains only non-depository accounts 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.

    processor/transactions/refresh

    Request fields

    client_id
    stringstring
    Your Plaid API 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
    requiredstringrequired, string
    The processor token obtained from the Plaid integration partner. Processor tokens are in the format: processor-<environment>-<identifier>
    secret
    stringstring
    Your Plaid API secret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.
    Select Language
    1const request: ProcessorTransactionsRefreshRequest = {
    2 processor_token: processorToken,
    3};
    4try {
    5 await plaidClient.processorTransactionsRefresh(request);
    6} catch (error) {
    7 // handle error
    8}
    processor/transactions/refresh

    Response fields and example

    request_id
    stringstring
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    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.

    Properties

    webhook_type
    stringstring
    PROCESSOR_TOKEN
    webhook_code
    stringstring
    WEBHOOK_UPDATE_ACKNOWLEDGED
    error
    objectobject
    Errors are identified by error_code and categorized by error_type. Use these in preference to HTTP status codes to identify and handle specific errors. HTTP status codes are set and provide the broadest categorization of errors: 4xx codes are for developer- or user-related errors, and 5xx codes are for Plaid-related errors, and the status will be 2xx in non-error cases. 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
    stringstring
    A broad categorization of the error. Safe for programmatic use.

    Possible values: 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, SANDBOX_ERROR, PARTNER_ERROR, TRANSACTIONS_ERROR, TRANSACTION_ERROR, TRANSFER_ERROR, CHECK_REPORT_ERROR, CONSUMER_REPORT_ERROR
    error_code
    stringstring
    The particular error code. Safe for programmatic use.
    error_code_reason
    stringstring
    The specific reason for the error code. Currently, reasons are only supported OAuth-based item errors; null will be returned otherwise. Safe for programmatic use.
    Possible values: OAUTH_INVALID_TOKEN: The user’s OAuth connection to this institution has been invalidated.
    OAUTH_CONSENT_EXPIRED: The user's access consent for this OAuth connection to this institution has expired.
    OAUTH_USER_REVOKED: The user’s OAuth connection to this institution is invalid because the user revoked their connection.
    error_message
    stringstring
    A developer-friendly representation of the error code. This may change over time and is not safe for programmatic use.
    display_message
    stringstring
    A user-friendly representation of the error code. null if the error is not related to user action.
    This may change over time and is not safe for programmatic use.
    request_id
    stringstring
    A unique ID identifying the request, to be used for troubleshooting purposes. This field will be omitted in errors provided by webhooks.
    causes
    arrayarray
    In this product, a request can pertain to more than one Item. If an error is returned for such a request, 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 be provided for the error_type ASSET_REPORT_ERROR or CHECK_REPORT_ERROR. causes will also not be populated inside an error nested within a warning object.
    status
    integerinteger
    The HTTP status code associated with the error. This will only be returned in the response body when the error information is provided via a webhook.
    documentation_url
    stringstring
    The URL of a Plaid documentation page with more information about the error
    suggested_action
    stringstring
    Suggested steps for resolving the error
    account_id
    stringstring
    The ID of the account.
    new_webhook_url
    stringstring
    The new webhook URL.
    environment
    stringstring
    The Plaid environment the webhook was sent from

    Possible values: 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}
    Was this helpful?
    Developer community
    GitHub
    GitHub
    Stack Overflow
    Stack Overflow
    YouTube
    YouTube
    Discord
    Discord