TRANSACTION LOOKUP

What is Bird on your bank statement?

A charge appearing as Bird on your credit card or bank statement is categorized by ParseTx as Bird.

Merchant Details

Bird is officially categorized under Transportation (ISO MCC: 4121). Its verified domain is bird.co. This is generally a one-time charge.

If you are building a fintech app and need to automatically clean up messy transaction descriptors like Bird, ParseTx can resolve this for you in under 50ms.

Common Statement Descriptors

Here are some of the typical ways this charge appears on credit card or bank statements. ParseTx automatically parses, cleans, and resolves all of these variations to Bird:

Bird
BIRD.COM
BIRD CARD
SQ *BIRD
BIRD STORE #5821

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": "Bird",
  "merchant": "Bird",
  "domain": "bird.co",
  "category": "Transportation",
  "mcc_code": "4121",
  "is_subscription": false,
  "confidence": 0.9
}

Integration Examples

cURL

curl -X POST https://api.parsetx.dev/v1/enrich \
  -H "X-API-Key: pt_live_yourkeyhere" \
  -H "Content-Type: application/json" \
  -d '{"transactions": ["Bird"]}'

Node.js

import { ParseTxClient } from 'parsetx';

const client = new ParseTxClient('pt_live_yourkeyhere');
const response = await client.enrich(['Bird']);
console.log(response.results[0].merchant); // "Bird"

Stop guessing what transactions mean

Start enriching your data for just $0.001 per transaction.

Get Started Free