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
  • 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
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

    Investments Move

    API reference for Investments Move endpoints and webhooks

    For how-to guidance, see the Investments Move documentation.

    Endpoints
    /investments/auth/getFetch investments data required for ACATS or ATON transfer

    /investments/auth/get

    Get data needed to authorize an investments transfer

    The /investments/auth/get endpoint allows developers to receive user-authorized data to facilitate the transfer of holdings

    investments/auth/get

    Request fields

    client_id
    string
    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
    string
    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.
    access_token
    requiredstring
    The access token associated with the Item data is being requested for.
    options
    object
    An optional object to filter /investments/auth/get results.
    account_ids
    [string]
    An array of account_ids to retrieve for the Item. An error will be returned if a provided account_id is not associated with the Item.
    Select Language
    1const request: InvestmentsAuthGetRequest = {
    2 access_token: accessToken,
    3};
    4try {
    5 const response = await plaidClient.investmentsAuthGet(request);
    6 const investmentsAuthData = response.data;
    7} catch (error) {
    8 // handle error
    9}
    investments/auth/get

    Response fields and example

    accounts
    [object]
    The accounts for which data is being retrieved
    account_id
    string
    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
    object
    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
    nullablenumber
    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
    nullablenumber
    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
    nullablenumber
    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
    nullablestring
    The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestring
    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
    nullablestring
    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
    nullablestring
    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
    string
    The name of the account, either assigned by the user or by the financial institution itself
    official_name
    nullablestring
    The official name of the account as given by the financial institution
    type
    string
    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
    nullablestring
    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
    string
    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.
    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, manually_verified, verification_expired, verification_failed, database_matched, database_insights_pass, database_insights_pass_with_caution, database_insights_fail
    verification_name
    string
    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
    object
    Insights from performing database verification for the account. Only returned for Auth Items using Database Auth.
    name_match_score
    nullableinteger
    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
    object
    Status information about the account and routing number in the Plaid network.
    has_numbers_match
    boolean
    Indicates whether we found at least one matching account for the ACH account and routing number.
    is_numbers_match_verified
    boolean
    Indicates if at least one matching account for the ACH account and routing number is already verified.
    previous_returns
    object
    Information about known ACH returns for the account and routing number.
    has_previous_administrative_return
    boolean
    Indicates whether Plaid's data sources include a known administrative ACH return for account and routing number.
    account_number_format
    string
    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
    string
    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
    nullablestring
    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]
    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
    string
    The Plaid account_id associated with the holding.
    security_id
    string
    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
    number
    The last price given by the institution for this security.

    Format: double
    institution_price_as_of
    nullablestring
    The date at which institution_price was current.

    Format: date
    institution_price_datetime
    nullablestring
    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
    number
    The value of the holding, as reported by the institution.

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

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

    Format: double
    vested_value
    nullablenumber
    The value of the vested holdings as reported by the institution.

    Format: double
    securities
    [object]
    Objects describing the securities held in the accounts associated with the Item.
    security_id
    string
    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
    nullablestring
    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
    nullablestring
    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
    nullablestring
    7-character SEDOL, an identifier assigned to securities in the UK.
    institution_security_id
    nullablestring
    An identifier given to the security by the institution
    institution_id
    nullablestring
    If institution_security_id is present, this field indicates the Plaid institution_id of the institution to whom the identifier belongs.
    proxy_security_id
    nullablestring
    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
    nullablestring
    A descriptive name for the security, suitable for display.
    ticker_symbol
    nullablestring
    The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.
    is_cash_equivalent
    nullableboolean
    Indicates that a security is a highly liquid asset and can be treated like cash.
    type
    nullablestring
    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
    nullablenumber
    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
    nullablestring
    Date for which close_price is accurate. Always null if close_price is null.

    Format: date
    update_datetime
    nullablestring
    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
    nullablestring
    The ISO-4217 currency code of the price given. Always null if unofficial_currency_code is non-null.
    unofficial_currency_code
    nullablestring
    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
    nullablestring
    The ISO-10383 Market Identifier Code of the exchange or market in which the security is being traded.
    sector
    nullablestring
    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
    nullablestring
    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
    nullableobject
    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
    string
    The type of this option contract. It is one of:
    put: for Put option contracts
    call: for Call option contracts
    expiration_date
    string
    The expiration date for this option contract, in ISO 8601 format.

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

    Format: double
    underlying_security_ticker
    string
    The ticker of the underlying security for this option contract.
    fixed_income
    nullableobject
    Details about the fixed income security.
    yield_rate
    nullableobject
    Details about a fixed income security's expected rate of return.
    percentage
    number
    The fixed income security's expected rate of return.

    Format: double
    type
    nullablestring
    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
    nullablestring
    The maturity date for this fixed income security, in ISO 8601 format.

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

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

    Format: double
    owners
    [object]
    Information about the account owners for the accounts associated with the Item.
    account_id
    string
    The ID of the account that this identity information pertains to
    names
    [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.
    numbers
    object
    Identifying information for transferring holdings to an investments account.
    acats
    [object]
    account_id
    string
    The Plaid account ID associated with the account numbers
    account
    string
    The full account number for the account
    dtc_numbers
    [string]
    Identifiers for the clearinghouses that are associated with the account in order of relevance. If this array is empty, call /institutions/get_by_id with the item.institution_id to get the DTC number.
    aton
    [object]
    account_id
    string
    The Plaid account ID associated with the account numbers
    account
    string
    The full account number for the account
    retirement_401k
    [object]
    account_id
    string
    The Plaid account ID associated with the account numbers
    plan
    string
    The plan number for the employer's 401k retirement plan
    account
    string
    The full account number for the account
    data_sources
    object
    Object with metadata pertaining to the source of data for the account numbers, owners, and holdings that are returned.
    numbers
    string
    A description of the source of data for a given product/data type.
    INSTITUTION: The institution supports this product, and the data was provided by the institution. INSTITUTION_MASK: The user manually provided the full account number, which was matched to the account mask provided by the institution. Only applicable to the numbers data type. USER: The institution does not support this product, and the data was manually provided by the user.


    Possible values: INSTITUTION, INSTITUTION_MASK, USER
    owners
    string
    A description of the source of data for a given product/data type.
    INSTITUTION: The institution supports this product, and the data was provided by the institution. INSTITUTION_MASK: The user manually provided the full account number, which was matched to the account mask provided by the institution. Only applicable to the numbers data type. USER: The institution does not support this product, and the data was manually provided by the user.


    Possible values: INSTITUTION, INSTITUTION_MASK, USER
    holdings
    string
    A description of the source of data for a given product/data type.
    INSTITUTION: The institution supports this product, and the data was provided by the institution. INSTITUTION_MASK: The user manually provided the full account number, which was matched to the account mask provided by the institution. Only applicable to the numbers data type. USER: The institution does not support this product, and the data was manually provided by the user.


    Possible values: INSTITUTION, INSTITUTION_MASK, USER
    item
    object
    Metadata about the Item.
    item_id
    string
    The Plaid Item ID. The item_id is always unique; linking the same account at the same institution twice will result in two Items with different item_id values. Like all Plaid identifiers, the item_id is case-sensitive.
    institution_id
    nullablestring
    The Plaid Institution ID associated with the Item. Field is null for Items created without an institution connection, such as Items created via Same Day Micro-deposits.
    institution_name
    nullablestring
    The name of the institution associated with the Item. Field is null for Items created without an institution connection, such as Items created via Same Day Micro-deposits.
    webhook
    nullablestring
    The URL registered to receive webhooks for the Item.
    auth_method
    nullablestring
    The method used to populate Auth data for the Item. This field is only populated for Items that have had Auth numbers data set on at least one of its accounts, and will be null otherwise. For info about the various flows, see our Auth coverage documentation.
    INSTANT_AUTH: The Item's Auth data was provided directly by the user's institution connection.
    INSTANT_MATCH: The Item's Auth data was provided via the Instant Match fallback flow.
    AUTOMATED_MICRODEPOSITS: The Item's Auth data was provided via the Automated Micro-deposits flow.
    SAME_DAY_MICRODEPOSITS: The Item's Auth data was provided via the Same Day Micro-deposits flow.
    INSTANT_MICRODEPOSITS: The Item's Auth data was provided via the Instant Micro-deposits flow.
    DATABASE_MATCH: The Item's Auth data was provided via the Database Match flow.
    DATABASE_INSIGHTS: The Item's Auth data was provided via the Database Insights flow.
    TRANSFER_MIGRATED: The Item's Auth data was provided via /transfer/migrate_account.
    INVESTMENTS_FALLBACK: The Item's Auth data for Investments Move was provided via a fallback flow.


    Possible values: INSTANT_AUTH, INSTANT_MATCH, AUTOMATED_MICRODEPOSITS, SAME_DAY_MICRODEPOSITS, INSTANT_MICRODEPOSITS, DATABASE_MATCH, DATABASE_INSIGHTS, TRANSFER_MIGRATED, INVESTMENTS_FALLBACK
    error
    nullableobject
    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
    string
    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
    string
    The particular error code. Safe for programmatic use.
    error_code_reason
    nullablestring
    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
    string
    A developer-friendly representation of the error code. This may change over time and is not safe for programmatic use.
    display_message
    nullablestring
    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
    string
    A unique ID identifying the request, to be used for troubleshooting purposes. This field will be omitted in errors provided by webhooks.
    causes
    array
    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
    nullableinteger
    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
    string
    The URL of a Plaid documentation page with more information about the error
    suggested_action
    nullablestring
    Suggested steps for resolving the error
    available_products
    [string]
    A list of products available for the Item that have not yet been accessed. The contents of this array will be mutually exclusive with billed_products.

    Possible values: assets, auth, balance, balance_plus, beacon, identity, identity_match, investments, investments_auth, liabilities, payment_initiation, identity_verification, transactions, credit_details, income, income_verification, standing_orders, transfer, employment, recurring_transactions, transactions_refresh, signal, statements, processor_payments, processor_identity, profile, cra_base_report, cra_income_insights, cra_partner_insights, cra_network_insights, cra_cashflow_insights, layer, pay_by_bank
    billed_products
    [string]
    A list of products that have been billed for the Item. The contents of this array will be mutually exclusive with available_products. Note - billed_products is populated in all environments but only requests in Production are billed. Also note that products that are billed on a pay-per-call basis rather than a pay-per-Item basis, such as balance, will not appear here.

    Possible values: assets, auth, balance, balance_plus, beacon, identity, identity_match, investments, investments_auth, liabilities, payment_initiation, identity_verification, transactions, credit_details, income, income_verification, standing_orders, transfer, employment, recurring_transactions, transactions_refresh, signal, statements, processor_payments, processor_identity, profile, cra_base_report, cra_income_insights, cra_partner_insights, cra_network_insights, cra_cashflow_insights, layer, pay_by_bank
    products
    [string]
    A list of products added to the Item. In almost all cases, this will be the same as the billed_products field. For some products, it is possible for the product to be added to an Item but not yet billed (e.g. Assets, before /asset_report/create has been called, or Auth or Identity when added as Optional Products but before their endpoints have been called), in which case the product may appear in products but not in billed_products.

    Possible values: assets, auth, balance, balance_plus, beacon, identity, identity_match, investments, investments_auth, liabilities, payment_initiation, identity_verification, transactions, credit_details, income, income_verification, standing_orders, transfer, employment, recurring_transactions, transactions_refresh, signal, statements, processor_payments, processor_identity, profile, cra_base_report, cra_income_insights, cra_partner_insights, cra_network_insights, cra_cashflow_insights, layer, pay_by_bank
    consented_products
    [string]
    A list of products that the user has consented to for the Item via Data Transparency Messaging. This will consist of all products where both of the following are true: the user has consented to the required data scopes for that product and you have Production access for that product.

    Possible values: assets, auth, balance, balance_plus, beacon, identity, identity_match, investments, investments_auth, liabilities, transactions, income, income_verification, transfer, employment, recurring_transactions, signal, statements, processor_payments, processor_identity, cra_base_report, cra_income_insights, cra_partner_insights, cra_cashflow_insights, layer
    consent_expiration_time
    nullablestring
    The date and time at which the Item's access consent will expire, in ISO 8601 format. If the Item does not have consent expiration scheduled, this field will be null. Currently, only institutions in Europe and a small number of institutions in the US have expiring consent. Closer to the 1033 compliance deadline of April 1, 2026, expiration times will be populated more widely. For more details, see Data Transparency Messaging consent expiration.

    Format: date-time
    update_type
    string
    Indicates whether an Item requires user interaction to be updated, which can be the case for Items with some forms of two-factor authentication.
    background - Item can be updated in the background
    user_present_required - Item requires user interaction to be updated


    Possible values: background, user_present_required
    request_id
    string
    A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
    1{
    2 "accounts": [
    3 {
    4 "account_id": "31qEA6LPwGumkA4Z5mGbfyGwr4mL6nSZlQqpZ",
    5 "balances": {
    6 "available": 43200,
    7 "current": 43200,
    8 "iso_currency_code": "USD",
    9 "limit": null,
    10 "unofficial_currency_code": null
    11 },
    12 "mask": "4444",
    13 "name": "Plaid Money Market",
    14 "official_name": "Plaid Platinum Standard 1.85% Interest Money Market",
    15 "subtype": "money market",
    16 "type": "depository"
    17 },
    18 {
    19 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    20 "balances": {
    21 "available": null,
    22 "current": 415.57,
    23 "iso_currency_code": "USD",
    24 "limit": null,
    25 "unofficial_currency_code": null
    26 },
    27 "mask": "5555",
    28 "name": "Plaid IRA",
    29 "official_name": null,
    30 "subtype": "ira",
    31 "type": "investment"
    32 }
    33 ],
    34 "holdings": [
    35 {
    36 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    37 "cost_basis": 1,
    38 "institution_price": 1,
    39 "institution_price_as_of": "2021-05-25",
    40 "institution_price_datetime": null,
    41 "institution_value": 0.01,
    42 "iso_currency_code": "USD",
    43 "quantity": 0.01,
    44 "security_id": "d6ePmbPxgWCWmMVv66q9iPV94n91vMtov5Are",
    45 "unofficial_currency_code": null,
    46 "vested_quantity": 1,
    47 "vested_value": 1
    48 },
    49 {
    50 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    51 "cost_basis": 0.01,
    52 "institution_price": 0.011,
    53 "institution_price_as_of": "2021-05-25",
    54 "institution_price_datetime": null,
    55 "institution_value": 110,
    56 "iso_currency_code": "USD",
    57 "quantity": 10000,
    58 "security_id": "8E4L9XLl6MudjEpwPAAgivmdZRdBPJuvMPlPb",
    59 "unofficial_currency_code": null,
    60 "vested_quantity": null,
    61 "vested_value": null
    62 },
    63 {
    64 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    65 "cost_basis": 94.808,
    66 "institution_price": 94.808,
    67 "institution_price_as_of": "2021-04-13",
    68 "institution_price_datetime": null,
    69 "institution_value": 94.808,
    70 "iso_currency_code": "USD",
    71 "quantity": 1,
    72 "security_id": "Lxe4yz4XQEtwb2YArO7RFMpPDvPxy7FALRyea",
    73 "unofficial_currency_code": null
    74 },
    75 {
    76 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    77 "cost_basis": 40,
    78 "institution_price": 42.15,
    79 "institution_price_as_of": "2021-05-25",
    80 "institution_price_datetime": null,
    81 "institution_value": 210.75,
    82 "iso_currency_code": "USD",
    83 "quantity": 5,
    84 "security_id": "abJamDazkgfvBkVGgnnLUWXoxnomp5up8llg4",
    85 "unofficial_currency_code": null,
    86 "vested_quantity": 7,
    87 "vested_value": 66
    88 }
    89 ],
    90 "item": {
    91 "available_products": [
    92 "assets",
    93 "balance",
    94 "beacon",
    95 "cra_base_report",
    96 "cra_income_insights",
    97 "signal",
    98 "identity",
    99 "identity_match",
    100 "income",
    101 "income_verification",
    102 "investments",
    103 "processor_identity",
    104 "recurring_transactions",
    105 "transactions"
    106 ],
    107 "billed_products": [
    108 "investments_auth"
    109 ],
    110 "consent_expiration_time": null,
    111 "error": null,
    112 "institution_id": "ins_115616",
    113 "institution_name": "Vanguard",
    114 "item_id": "7qBnDwLP3aIZkD7NKZ5ysk5X9xVxDWHg65oD5",
    115 "products": [
    116 "investments_auth"
    117 ],
    118 "update_type": "background",
    119 "webhook": "https://www.genericwebhookurl.com/webhook"
    120 },
    121 "numbers": {
    122 "acats": [
    123 {
    124 "account": "TR5555",
    125 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    126 "dtc_numbers": [
    127 "1111",
    128 "2222",
    129 "3333"
    130 ]
    131 }
    132 ]
    133 },
    134 "owners": [
    135 {
    136 "account_id": "31qEA6LPwGumkA4Z5mGbfyGwr4mL6nSZlQqpZ",
    137 "names": [
    138 "Alberta Bobbeth Charleson"
    139 ]
    140 },
    141 {
    142 "account_id": "xlP8npRxwgCj48LQbjxWipkeL3gbyXf64knoy",
    143 "names": [
    144 "Alberta Bobbeth Charleson"
    145 ]
    146 }
    147 ],
    148 "request_id": "hPCXou4mm9Qwzzu",
    149 "securities": [
    150 {
    151 "close_price": 0.011,
    152 "close_price_as_of": null,
    153 "cusip": null,
    154 "industry": null,
    155 "institution_id": null,
    156 "institution_security_id": null,
    157 "is_cash_equivalent": false,
    158 "isin": null,
    159 "iso_currency_code": "USD",
    160 "market_identifier_code": null,
    161 "name": "Nflx Feb 01'18 $355 Call",
    162 "option_contract": null,
    163 "fixed_income": null,
    164 "proxy_security_id": null,
    165 "sector": null,
    166 "security_id": "8E4L9XLl6MudjEpwPAAgivmdZRdBPJuvMPlPb",
    167 "sedol": null,
    168 "ticker_symbol": "NFLX180201C00355000",
    169 "type": "derivative",
    170 "unofficial_currency_code": null,
    171 "update_datetime": null
    172 },
    173 {
    174 "close_price": 94.808,
    175 "close_price_as_of": "2023-11-02",
    176 "cusip": "912797HE0",
    177 "fixed_income": {
    178 "face_value": 100,
    179 "issue_date": "2023-11-02",
    180 "maturity_date": "2024-10-31",
    181 "yield_rate": {
    182 "percentage": 5.43,
    183 "type": "coupon_equivalent"
    184 }
    185 },
    186 "industry": "Sovereign Government",
    187 "institution_id": null,
    188 "institution_security_id": null,
    189 "is_cash_equivalent": false,
    190 "isin": null,
    191 "iso_currency_code": "USD",
    192 "market_identifier_code": null,
    193 "name": "US Treasury Bill - 5.43% 31/10/2024 USD 100",
    194 "option_contract": null,
    195 "proxy_security_id": null,
    196 "sector": "Government",
    197 "security_id": "Lxe4yz4XQEtwb2YArO7RFMpPDvPxy7FALRyea",
    198 "sedol": null,
    199 "ticker_symbol": null,
    200 "type": "fixed income",
    201 "unofficial_currency_code": null,
    202 "update_datetime": null
    203 },
    204 {
    205 "close_price": 9.08,
    206 "close_price_as_of": "2024-09-09",
    207 "cusip": null,
    208 "fixed_income": null,
    209 "industry": "Investment Trusts or Mutual Funds",
    210 "institution_id": null,
    211 "institution_security_id": null,
    212 "is_cash_equivalent": false,
    213 "isin": null,
    214 "iso_currency_code": "USD",
    215 "market_identifier_code": null,
    216 "name": "DoubleLine Total Return Bond I",
    217 "option_contract": null,
    218 "proxy_security_id": null,
    219 "sector": "Miscellaneous",
    220 "security_id": "AE5rBXra1AuZLE34rkvvIyG8918m3wtRzElnJ",
    221 "sedol": "B5ND9B4",
    222 "ticker_symbol": "DBLTX",
    223 "type": "mutual fund",
    224 "unofficial_currency_code": null,
    225 "update_datetime": null
    226 },
    227 {
    228 "close_price": 42.15,
    229 "close_price_as_of": null,
    230 "cusip": null,
    231 "fixed_income": null,
    232 "industry": null,
    233 "institution_id": null,
    234 "institution_security_id": null,
    235 "is_cash_equivalent": false,
    236 "isin": null,
    237 "iso_currency_code": "USD",
    238 "market_identifier_code": null,
    239 "name": "iShares Inc MSCI Brazil",
    240 "option_contract": null,
    241 "proxy_security_id": null,
    242 "sector": null,
    243 "security_id": "abJamDazkgfvBkVGgnnLUWXoxnomp5up8llg4",
    244 "sedol": null,
    245 "ticker_symbol": "EWZ",
    246 "type": "etf",
    247 "unofficial_currency_code": null,
    248 "update_datetime": null
    249 },
    250 {
    251 "close_price": 1,
    252 "close_price_as_of": null,
    253 "cusip": null,
    254 "fixed_income": null,
    255 "industry": null,
    256 "institution_id": null,
    257 "institution_security_id": null,
    258 "is_cash_equivalent": true,
    259 "isin": null,
    260 "iso_currency_code": "USD",
    261 "market_identifier_code": null,
    262 "name": "U S Dollar",
    263 "option_contract": null,
    264 "proxy_security_id": null,
    265 "sector": null,
    266 "security_id": "d6ePmbPxgWCWmMVv66q9iPV94n91vMtov5Are",
    267 "sedol": null,
    268 "ticker_symbol": null,
    269 "type": "cash",
    270 "unofficial_currency_code": null,
    271 "update_datetime": null
    272 }
    273 ],
    274 "data_sources": {
    275 "numbers": "INSTITUTION",
    276 "owners": "INSTITUTION",
    277 "holdings": "INSTITUTION"
    278 }
    279}
    Was this helpful?
    Developer community
    GitHub
    GitHub
    Stack Overflow
    Stack Overflow
    YouTube
    YouTube
    Discord
    Discord