⌨️Get credit card codes (All) API

Gets a list of standard codes and names for all credit card companies (based on KFTC codes).

Gets both standard codes and names for all credit card companies (based on KFTC codes)

GET https://api.iamport.kr/cards

code * integer

Response code

0: success, Not 0: check the message

message * string

Response message

A non-zero code includes a message like 'Invalid payment info'.

response(Array[StandardCodeAnnotation], optional)

code*string

Institution code (from KFTC)

name *string

Institution name (from KFTC)

Response Model Schema
{
  "code": 0,
  "message": "string",
  "response": [
    {
      "code": "string",
      "name": "string"
    }
  ]
}

Last updated