TRANSACTION LOOKUP
What is Zelle on your bank statement?
A charge appearing as Zelle on your credit card or bank statement is categorized by ParseTx as Zelle.
Merchant Details
Zelle is officially categorized under Transfer (ISO MCC: 4829). Its verified domain is zellepay.com. This is generally a one-time charge.
If you are building a fintech app and need to automatically clean up messy transaction descriptors like Zelle, ParseTx can resolve this for you in under 50ms.
ParseTx API Response
When you send this transaction to the ParseTx enrichment API, this is the structured JSON you receive back:
{
"status": "complete",
"source": "cache",
"input": "Zelle",
"merchant": "Zelle",
"domain": "zellepay.com",
"category": "Transfer",
"mcc_code": "4829",
"is_subscription": false,
"confidence": 0.95
}
Integration Examples
cURL
curl -X POST https://api.parsetx.com/v1/enrich \
-H "X-API-Key: pt_live_yourkeyhere" \
-H "Content-Type: application/json" \
-d '{"transactions": ["Zelle"]}'
Node.js
import { ParseTxClient } from 'parsetx';
const client = new ParseTxClient('pt_live_yourkeyhere');
const response = await client.enrich(['Zelle']);
console.log(response.results[0].merchant); // "Zelle"
Stop guessing what transactions mean
Start enriching your data for just $0.005 per transaction.
Get Started Free