Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/acuant-chip-data-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Acuant AssureID Connect Chip Data API
description: REST API for document identity verification. Supports creating document transactions, uploading multi-spectral images, extracting data fields, and retrieving authentication results for over 3,400 global document types including driver's licenses, passports, and national IDs. Uses HTTP Basic authentication over HTTPS.
version: '1.0'
contact:
name: Acuant Support
url: https://support.acuant.com
x-api-id: acuant:assureid-connect
servers:
- url: https://services.assureid.net
description: USA Production
- url: https://us.assureid.acuant.net
description: USA Production (alternate)
- url: https://eu.assureid.acuant.net
description: EU Production
- url: https://aus.assureid.acuant.net
description: AUS Production
- url: https://preview.assureid.acuant.net
description: Preview / Sandbox
security:
- BasicAuth: []
tags:
- name: Chip Data
description: Submit and retrieve contactless chip data
paths:
/DocumentChipData:
post:
operationId: uploadDocumentChipData
summary: Submit contactless chip data
description: Submits contactless chip (NFC/RFID) information for a document.
tags:
- Chip Data
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ChipDataRequest'
responses:
'200':
description: Chip data submitted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'500':
$ref: '#/components/responses/InternalServerError'
get:
operationId: getDocumentChipData
summary: Retrieve chip authentication results
description: Returns contactless chip authentication results.
tags:
- Chip Data
responses:
'200':
description: Chip authentication results
content:
application/json:
schema:
$ref: '#/components/schemas/ChipDataResult'
'401':
$ref: '#/components/responses/Unauthorized'
components:
schemas:
ChipDataResult:
type: object
properties:
Authenticated:
type: boolean
description: Whether chip authentication succeeded
ChipFields:
type: array
items:
$ref: '#/components/schemas/DocumentField'
ChipDataRequest:
type: object
properties:
ChipData:
type: string
description: NFC/RFID chip data payload
DocumentField:
type: object
properties:
Name:
type: string
description: Field name (e.g., "First Name", "Date of Birth")
Value:
type: string
description: Extracted field value
DataSource:
type: string
description: Source of the data extraction
Error:
type: object
properties:
Code:
type: integer
description: HTTP status code
Message:
type: string
description: Error description
responses:
Unauthorized:
description: Authentication failure
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
InternalServerError:
description: Server error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
BasicAuth:
type: http
scheme: basic
description: HTTP Basic Authentication. Credentials formatted as "name:password" and base64-encoded, transmitted via Authorization header over HTTPS.