Developers
V1
V2

Get bank codes (All) API

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

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

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

Responses

200: OK
Success

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)

401: Unauthorized
Missing or invalid access token
{
  // Response
}
404: Not Found
Result not found
{
  // Response
}

Response Model Schema

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