ISO 8583 Parser
Free · 基础 · 约 6 分钟Basics · ~6 min read

信用卡是怎么运作的?四方模型入门How Credit Cards Work: The Four-Party Model

一句话:你刷一次卡,背后至少有 4 个角色在协作——持卡人、商户、收单行、发卡行,中间还有卡组织(Visa/Mastercard/银联)做清算网络。搞懂它们的分工,后面看 ISO 8583 报文里的每个字段就有了坐标系。 In short: every swipe involves at least four parties — cardholder, merchant, acquirer, and issuer — connected by a card network (Visa/Mastercard/UnionPay). Once you know who does what, every field in an ISO 8583 message suddenly has a place to sit.

四个角色The four parties

角色Party是谁Who做什么Role
持卡人 CardholderCardholder拿卡消费的你You, paying with a card发起交易、承担还款Initiates the payment, owes the balance
商户 MerchantMerchant收钱的店家The shop getting paid受理卡片、提交交易Accepts the card, submits the transaction
收单行 AcquirerAcquirer商户的银行The merchant's bank把交易送进卡组织网络、给商户结钱Routes the transaction into the network, settles funds to the merchant
发卡行 IssuerIssuer给你发卡的银行The bank that issued your card授权/拒绝、垫付资金、向持卡人收款Approves/declines, funds the payment, bills the cardholder

第五个隐形角色是卡组织(Card Network / Scheme):Visa、Mastercard、银联、American Express、JCB 等。它不直接放款,而是充当收单行和发卡行之间的清算与规则网络——报文走它的通道,费率和标准由它制定。A fifth, invisible player is the card network (scheme): Visa, Mastercard, UnionPay, American Express, JCB. It doesn't lend money; it is the switching and rulebook network between acquirer and issuer — messages travel over its rails, and it sets the standards and fees.

三方模型 vs 四方模型:American Express、Discover 传统上是三方模型——发卡和收单是同一家(卡组织自己既发卡又收单)。Visa/Mastercard/银联是四方模型——发卡行和收单行是不同机构,靠网络连接。Three-party vs four-party: Amex and Discover are historically three-party — the network is both issuer and acquirer. Visa/Mastercard/UnionPay are four-party — issuer and acquirer are separate institutions linked by the network.

钱和信息是怎么流动的How money and messages flow

  1. 发起:你在商户刷卡,POS/网关组装一条授权请求报文(通常是 ISO 8583 的 0100/0200)。Initiate: you tap/swipe; the POS or gateway builds an authorization request (typically ISO 8583 0100/0200).
  2. 路由:收单行把报文送进卡组织网络,网络按卡号 BIN 找到发卡行。Route: the acquirer sends it into the network, which uses the card's BIN to find the issuer.
  3. 决策:发卡行检查余额/额度/风控,返回授权响应(0110/0210),响应码 DE39 = 00 表示批准。Decide: the issuer checks balance/limit/risk and returns an authorization response (0110/0210); response code DE39 = 00 means approved.
  4. 清结算:当天晚些时候,交易被批量清算,资金在银行间结算——商户拿到钱(扣掉手续费),发卡行之后向你出账单。Clear & settle: later, transactions are cleared in batches and funds settle between banks — the merchant is paid (minus fees) and the issuer later bills you.

中间的手续费(为什么商户要被抽成)The fees in the middle

商户收到的钱少于成交额,差额主要是三块:交换费(Interchange)——收单行付给发卡行,是费用的大头;卡组织费(Scheme fee)——付给 Visa/MC 等;收单行加价(Acquirer markup)。这也是为什么发卡行有动力多发卡、鼓励消费。The merchant nets less than the sale amount. The gap is mainly three parts: interchange (paid by acquirer to issuer — the biggest slice), scheme fees (to Visa/MC), and the acquirer markup. This is exactly why issuers are motivated to hand out cards and encourage spending.


👉 下一篇:一笔交易的完整生命周期:授权 → 清算 → 结算,把上面第 4 步拆开细讲。想直接看报文?打开 解析工具 贴一条 ISO 8583 试试。👉 Next: The Transaction Lifecycle: Authorization → Clearing → Settlement, which unpacks step 4 above. Want to see a real message? Open the parser tool and paste an ISO 8583.