BIN code lookup with apilayer API
This workflow is designed to validate and fetch information about a card using the BIN code. It utilizes apilayer's BIN Check API and provides details like the card brand, type, issuing bank, and country. Prerequisite...
Template notes
This workflow is designed to validate and fetch information about a card using the BIN code. It utilizes apilayer's BIN Check API and provides details like the card brand, type, issuing bank, and country.
Prerequisites: - An apilayer account - API Key for the BIN Check API
---
Steps in n8n:
Step 1: Manual Trigger - Node Type: Manual Trigger - Purpose: Starts the workflow manually
Step 2: Set BIN Code and API Key - Node Type: Set - Fields to set: - bincode: A sample BIN like JH4KA7560RC003647 - apikey: Your apilayer API key
Step 3: HTTP Request - Node Type: HTTP Request - Method: GET - URL: https://api.apilayer.com/bincheck/{{ $json.bincode }} - Headers: - Name: apiKey - Value: {{ $json.apikey }}
(Optional) Step 4: Handle the Output - Add nodes to store, parse, or visualize the API response.