Tokenize a bank account for Standard ACH or Same-Day ACH disbursements.
curl --request POST \
--url https://payapi-sandbox.ingo.money/gateway/verify--ach \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"participant_id": 12345,
"account_type": "AC",
"version": 11,
"timestamp": 1576100326,
"participant_unique_id1": "5bf1e2c3-2169-406f-bf1b-f7bc5c2303b3",
"account": "22222222",
"routing_number": "011000015",
"recipient_first_name": "Alex",
"recipient_last_name": "Rivera",
"recipient_address1": "100 Innovation Way",
"recipient_address2": "Apt 2",
"recipient_city": "Anytown",
"recipient_state": "GA",
"recipient_zip": "00000",
"recipient_phone": 1231231234,
"amount": 1010.5,
"fi_account_type": "1",
"fi_account_classification": "1",
"recipient_business_name": "Skywalker Enterprises",
"participant_unique_id2": "80525360-dae4-4d0f-9f5c-e09f3fdcf7c8"
}
'{
"status": 100,
"client_message": "Success",
"data": {
"customer_account_token": "89421718-a62e-4344-8a1d-4baf73fb11f1",
"last_4": "2222",
"request_timestamp": 1576100403,
"issuers": [
{
"payee_id": "550333",
"payee_name": "Test Bank",
"payee_address": null,
"payee_city": null,
"payee_state": null,
"payee_zip": null,
"credit_info": {
"min": "0.10",
"max": "1000.00",
"card_type": "DDA",
"estimated_posting_time": "Payment will post 04/22/2026",
"estimated_posting_date": "04/22/2026"
},
"issuing_network": "NA",
"credit_enabled": 1,
"debit_enabled": 0
}
],
"participant_unique_id1": "5bf1e2c3-2169-406f-bf1b-f7bc5c2303b3",
"participant_unique_id2": "80525360-dae4-4d0f-9f5c-e09f3fdcf7c8",
"count": 1
},
"time": "1.0263"
}Documentation Index
Fetch the complete documentation index at: https://developers.ingopayments.com/llms.txt
Use this file to discover all available pages before exploring further.
All requests must be authenticated using an HMAC-signed Authorization header. Ingo Money requires HMAC-SHA512 for all new integrations. SHA-512 provides a significantly larger internal state and output length than SHA-256, making it substantially more resistant to length-extension attacks and brute-force preimage attempts — properties that matter for financial API traffic where each request authorizes a real money movement.
Legacy integrations using HMAC-SHA256 remain supported but are encouraged to upgrade. SHA-256 continues to meet the current minimum security bar; however, upgrading to SHA-512 eliminates an entire class of potential vulnerabilities before they become exploitable, and aligns with NIST guidance recommending SHA-2 family algorithms with 256-bit security strength or greater for long-term use. Contact your Ingo integration manager to coordinate an algorithm upgrade.
MD5 and SHA-1 are not accepted under any circumstances. Requests signed with either algorithm will be rejected.
Authorization header format:
Authorization: hmac username="YOUR_HMAC_USERNAME", algorithm="hmac-sha512", headers="request-line x-date content-type content-length content-sha512", signature="BASE64_SIGNATURE"
Credentials provisioned by your Ingo integration manager:
HMAC username — identifies your integration in the Authorization
header username field. Distinct from your participant identifier.
HMAC secret — provisioned by your Ingo integration manager. The private key used to compute the signature. Never transmit this value — store it in a secrets manager or environment variable, never in source code.
Participant identifier — a separate value used to identify your account within the API request payload. The name and placement differs by product family. Both the HMAC username and participant identifier are provisioned at onboarding — do not substitute one for the other.
API key — required for select product families as an additional per-request credential. See product-specific documentation for applicability.
See the Ingo API Authentication Guide for the complete string-to-sign construction, body hashing requirements, and timestamp validation rules.
Provide either customer_account_token or the raw account fields (account, routing_number, recipient_first_name, recipient_last_name, recipient_address1, recipient_city, recipient_state, recipient_zip) — never both.
Unique participant identifier assigned by Ingo.
12345
Value should be set to AC for Standard ACH / RTP or SD for Same-Day ACH.
AC, SD 1"AC"
API version of the request. Current version is 11.
11
Unix timestamp of the request.
1576100326
Participant assigned ID to be associated with customer_account_token creation. Should correlate to participant assigned values affiliated with future process requests for tracking purposes (e.g. CustomerID or AccountID). Must not contain NPI data.
1 - 255"5bf1e2c3-2169-406f-bf1b-f7bc5c2303b3"
Bank account number. Required unless a valid customer_account_token is provided.
1 - 255"22222222"
Bank routing number associated with the account number. Required unless a valid customer_account_token is provided.
"011000015"
Alternative to raw account data when the account was previously tokenized. If provided, the following fields are not required and should be omitted: recipient_first_name, recipient_last_name, account, routing_number, recipient_address1, recipient_city, recipient_state, recipient_zip.
1 - 255"89421718-a62e-4344-8a1d-4baf73fb11f1"
Recipient zip code. 5-digit zip or zip+4 in xxxxx-xxxx format. Required unless a valid customer_account_token is provided.
10^[0-9]{5}(?:-[0-9]{4})?$"30313"
Recipient first name. Required unless a valid customer_account_token is provided.
1 - 255"Luke"
Recipient last name. Required unless a valid customer_account_token is provided.
1 - 255"Skywalker"
Recipient state (standard US postal abbreviation). Required unless a valid customer_account_token is provided.
2^(?:A[LKSZRAEP]|C[AOT]|D[EC]|F[LM]|G[AU]|HI|I[ADLN]|K[SY]|LA|M[ADEHINOPST]|N[CDEHJMVY]|O[HKR]|P[ARW]|RI|S[CD]|T[NX]|UT|V[AIT]|W[AIVY])$"GA"
Recipient city. Required unless a valid customer_account_token is provided.
1 - 255"Atlanta"
Recipient address line 1. Required unless a valid customer_account_token is provided.
1 - 255"123 Main St."
Financial institution account type. Default = 1 (DDA/Checking). 1 = DDA/Checking, 2 = Savings.
3^(1|2)?$"1"
Financial institution account classification. Default = 1 (Personal). 1 = Personal, 2 = Business.
3^(1|2)?$"1"
Dollar amount of disbursement. Max value determined by participant velocity limits.
x >= 0.011010.5
10-digit recipient phone number.
1231231234
Recipient address line 2.
255"Apt 2"
Optional recipient business name.
150"Skywalker Enterprises"
Optional second participant assigned ID to be associated with customer_account_token creation. Should be carried forward to future process requests for tracking purposes. Must not contain NPI data.
255"80525360-dae4-4d0f-9f5c-e09f3fdcf7c8"
Client assigned store ID. Required for Retail client participants.
255"STORE-001"
Client assigned clerk ID. Required for Retail client participants.
255"CLK-007"
Client assigned terminal ID. Required for Retail client participants.
255"TERM-042"
Verification successful — token returned
Numeric code describing the status of the API request. 100 = Success.
100
Text description associated with the status code.
"Success"
Hide child attributes
GUID — unique value generated based upon account and recipient data. Use this token in all subsequent Process requests for this account.
"89421718-a62e-4344-8a1d-4baf73fb11f1"
The last 4 digits of the account number.
"2222"
Unix timestamp of the request.
1576100403
Information about the issuer of the account.
Hide child attributes
The Ingo assigned ID for the payee.
"550333"
Name of the payee (issuer).
"Test Bank"
Payee address.
null
Payee city.
null
Payee state.
null
Payee zip code.
null
Information regarding limits for push (credit) transactions. Returned if participant is enabled for push and account is enabled for push processing.
Hide child attributes
Minimum amount accepted for a push transaction.
"0.10"
Maximum amount accepted for a push transaction.
"1000.00"
Account type identifier. Always returns DDA for bank account transactions.
"DDA"
Estimated posting time narrative.
"Payment will post 04/22/2026"
Estimated posting date.
"04/22/2026"
Information regarding limits for pull (debit) transactions. Returned if participant is enabled for pull and account is enabled for pull processing.
Issuing network identifier. Returns NA for bank accounts.
"NA"
Whether the account is enabled for push (credit) transactions. 1 = Enabled, 0 = Not enabled.
0, 1 1
Whether the account is enabled for pull (debit) transactions. 1 = Enabled, 0 = Not enabled.
0, 1 0
Echo of participant assigned ID for the verify request.
"5bf1e2c3-2169-406f-bf1b-f7bc5c2303b3"
Echo of optional second participant assigned ID for the verify request.
"80525360-dae4-4d0f-9f5c-e09f3fdcf7c8"
Always returns 1.
1
Time in seconds to complete the request.
"1.0263"
curl --request POST \
--url https://payapi-sandbox.ingo.money/gateway/verify--ach \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"participant_id": 12345,
"account_type": "AC",
"version": 11,
"timestamp": 1576100326,
"participant_unique_id1": "5bf1e2c3-2169-406f-bf1b-f7bc5c2303b3",
"account": "22222222",
"routing_number": "011000015",
"recipient_first_name": "Alex",
"recipient_last_name": "Rivera",
"recipient_address1": "100 Innovation Way",
"recipient_address2": "Apt 2",
"recipient_city": "Anytown",
"recipient_state": "GA",
"recipient_zip": "00000",
"recipient_phone": 1231231234,
"amount": 1010.5,
"fi_account_type": "1",
"fi_account_classification": "1",
"recipient_business_name": "Skywalker Enterprises",
"participant_unique_id2": "80525360-dae4-4d0f-9f5c-e09f3fdcf7c8"
}
'{
"status": 100,
"client_message": "Success",
"data": {
"customer_account_token": "89421718-a62e-4344-8a1d-4baf73fb11f1",
"last_4": "2222",
"request_timestamp": 1576100403,
"issuers": [
{
"payee_id": "550333",
"payee_name": "Test Bank",
"payee_address": null,
"payee_city": null,
"payee_state": null,
"payee_zip": null,
"credit_info": {
"min": "0.10",
"max": "1000.00",
"card_type": "DDA",
"estimated_posting_time": "Payment will post 04/22/2026",
"estimated_posting_date": "04/22/2026"
},
"issuing_network": "NA",
"credit_enabled": 1,
"debit_enabled": 0
}
],
"participant_unique_id1": "5bf1e2c3-2169-406f-bf1b-f7bc5c2303b3",
"participant_unique_id2": "80525360-dae4-4d0f-9f5c-e09f3fdcf7c8",
"count": 1
},
"time": "1.0263"
}