@cardscan.ai/insurance-cardscan-react

A library that makes it easy to add health insurance card scanning to any web application

Usage no npm install needed!

<script type="module">
  import cardscanAiInsuranceCardscanReact from 'https://cdn.skypack.dev/@cardscan.ai/insurance-cardscan-react';
</script>

README

CardScan.ai: React Widget

CardScan.ai is the fastest way to add health insurance card scanning to your mobile or web application.


drawing


CardScan.ai has UI widgets to support scanning on web, mobile web, native iOS and Android. Or use the API to build your own implementation.


drawing

Basic Example:

import React from "react";
import { render } from "react-dom";
import {CardScanView} from "@cardscan.ai/insurance-cardscan-react";

function onSuccess(card: any) {
  console.log("new card: ", card);
}

// See Authentication on where to get this token.
const token = 'JWT_TOKEN'

// Render CardScanView
render(
  <CardScanView
    live={false}
    sessionToken={token}
    onSuccess={onSuccess}
    />
  ,document.getElementById("root")
);

Checkout the full docs and React Widget docs.