Bank Data Lookup

Gather endpoints that provide functionalities for looking up bank information. These functionalities include looking up bank information based on the given bank data lookup request.

Lookup Bank Information

Lookup bank information based on the given bank data lookup request.

SecurityapiKey
Request
Request Body schema: application/json
object (BankLookupQuery)

Query for bank lookup.

matchingThreshold
number <double> [ 0 .. 1 ]

The minimum matching score that a bank must have to be included in the result set. Default: 0.0.

Example: "0.5"
maxCandidates
integer [ 20 .. 100 ]

The maximum number of candidates that should be returned.

Example: "50"
page
integer >= 0
Default: 0

The number of page.

Example: "0"
pageSize
integer [ 1 .. 1000 ]

The number of results that should be fetched. Maximum 1000 results can be returned in one page. Default: 10.

Example: "100"
Responses
200

OK

post/banks/lookup
Request samples
application/json
{
  • "bank": {
    },
  • "matchingThreshold": "0.5",
  • "maxCandidates": "50",
  • "pageSize": "100",
  • "page": "0"
}
Response samples
application/json
{
  • "pageSize": "100",
  • "totals": "67",
  • "page": "1",
  • "values": [
    ]
}