Skip to content

apiverve/action-data-validation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

APIVerve Data Validation Action

Validate phone numbers, VAT IDs, IBANs, and other data formats

Beta Release - This action is in beta. We'd love your feedback! Open an issue if you encounter any problems.

![GitHub Marketplace](https://img.shields.io/badge/Marketplace-Data Validation-blue?logo=github) License: MIT

Browse All APIs | Get Free API Key | Documentation


What does this action do?

This action provides access to APIVerve's Data Validation APIs directly in your GitHub workflows:

  • Validate phone numbers
  • Verify VAT identification numbers
  • Validate IBAN bank account numbers
  • Lookup BIN/IIN card information

Available APIs

API Description
phonenumbervalidator Phone Number Validator is a simple tool for validating if a phone number is valid or not. It checks the phone number format and the country code to see if the phone number is valid.
vatvalidator vatvalidator API
ibanvalidator ibanvalidator API
binlookup BIN Lookup is a simple tool for looking up BIN number information. It returns information such as the bank, card type, and more based on the BIN number provided.
routinglookup Routing Number Lookup is a simple tool for looking up routing number information for USA Banks. It returns information such as the bank, location, and more based on the routing number provided.

Quick Start

- name: Data Validation
  uses: apiverve/action-data-validation@v1
  with:
    api_key: ${{ secrets.APIVERVE_KEY }}
    api: phonenumbervalidator
    params: '{"number": "+14155551234"}'

Setup

1. Get Your API Key

Sign up for a free account at dashboard.apiverve.com/signup and create an API key.

2. Add Secret to Repository

Go to your repository SettingsSecrets and variablesActionsNew repository secret

  • Name: APIVERVE_KEY
  • Value: Your API key from the dashboard

3. Use in Workflow

- name: Data Validation
  uses: apiverve/action-data-validation@v1
  with:
    api_key: ${{ secrets.APIVERVE_KEY }}
    api: phonenumbervalidator
    params: '{"your": "parameters"}'

Inputs

Input Description Required Default
api_key Your APIVerve API key (or set APIVERVE_API_KEY env var) Yes* -
api API to use: phonenumbervalidator, vatvalidator, ibanvalidator, binlookup, routinglookup No phonenumbervalidator
params JSON parameters for the API No {}
output_file Path to save binary output (images, PDFs) No -
format Response format: json, yaml, or xml No json
fail_on_error Fail workflow if API returns error No true

*API key is required but can be provided via input OR APIVERVE_API_KEY / APIVERVE_KEY environment variable.

Outputs

Output Description
result Full API response as JSON
data The data field from response as JSON
status API status (ok or error)
file Path to downloaded file (if output_file was used)

Examples

Phone Validation

Validate a phone number

- name: Phone Validation
  id: data-validation-0
  uses: apiverve/action-data-validation@v1
  with:
    api_key: ${{ secrets.APIVERVE_KEY }}
    api: phonenumbervalidator
    params: '{"number": "+14155551234"}'

- name: Use result
  run: echo "Result: ${{ steps.data-validation-0.outputs.data }}"

VAT Validation

Validate a VAT ID

- name: VAT Validation
  id: data-validation-1
  uses: apiverve/action-data-validation@v1
  with:
    api_key: ${{ secrets.APIVERVE_KEY }}
    api: vatvalidator
    params: '{"vatid": "DE123456789"}'

- name: Use result
  run: echo "Result: ${{ steps.data-validation-1.outputs.data }}"

Full Workflow Example

name: Data Validation Workflow

on:
  push:
    branches: [main]
  workflow_dispatch:

jobs:
  data-validation:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Run Data Validation
        id: result
        uses: apiverve/action-data-validation@v1
        with:
          api_key: ${{ secrets.APIVERVE_KEY }}
          api: phonenumbervalidator
          params: '{"number": "+14155551234"}'

      - name: Show result
        run: |
          echo "Status: ${{ steps.result.outputs.status }}"
          echo "Data: ${{ steps.result.outputs.data }}"

Related Actions

Looking for more APIVerve actions?

Browse all APIVerve Actions →


Pricing

  • Free tier - Get started with generous free limits
  • Pro plans - Higher rate limits and priority support for production use

Check out pricing details.


Resources


License

MIT - see LICENSE


Built by APIVerve - 350+ APIs for developers

About

Validate phone numbers, VAT IDs, IBANs, and other data formats

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors