Official SDK for OrigoID, a REST API for identity verification in Mexico.
Validate a CURP against RENAPO, check an INE voter credential against the
voter list (Lista Nominal), extract data from the INE card, validate RFC,
tax status certificates (CSF) and CFDI invoices at SAT, look up an NSS at
IMSS, screen against OFAC, PEPs and SAT 69 / 69-B lists, and compare faces.
Every response uses the same envelope, so integration is a switch on type.
Zero data retention: each request is validated, answered and discarded.
En español — SDK oficial de OrigoID para verificación de identidad en México: validar CURP en RENAPO, vigencia de la credencial de elector en la Lista Nominal del INE, OCR de INE, RFC, Constancia de Situación Fiscal y CFDI en el SAT, NSS en el IMSS, búsqueda en OFAC, PEPs y listas SAT 69 y 69-B, y comparación facial. Cero retención de datos. Guías: Validar CURP · Validar INE / Lista Nominal · OCR de INE · Validar RFC · Comparación facial · Documentación · Estatus
- Documentation
- Installation
- Reference
- Usage
- Request and Response Types
- Exception Handling
- Advanced
- Contributing
API reference documentation is available here.
npm i -s @origoid/sdkA full reference for this library is available here.
Instantiate and use the client with the following:
import { OrigoidApiClient } from "@origoid/sdk";
const client = new OrigoidApiClient({ apiKey: "YOUR_API_KEY" });
await client.renapo.validateCurp({
curp: "TEST900101HDFRRN09",
});The SDK exports all request and response types as TypeScript interfaces. Simply import them with the following namespace:
import { OrigoidApi } from "@origoid/sdk";
const request: OrigoidApi.IssueTokenRequest = {
...
};When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.
import { OrigoidApiError } from "@origoid/sdk";
try {
await client.renapo.validateCurp(...);
} catch (err) {
if (err instanceof OrigoidApiError) {
console.log(err.statusCode);
console.log(err.message);
console.log(err.body);
console.log(err.rawResponse);
}
}If you would like to send additional headers as part of the request, use the headers request option.
const response = await client.renapo.validateCurp(..., {
headers: {
'X-Custom-Header': 'custom value'
}
});The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retryable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).
A request is deemed retryable when any of the following HTTP status codes is returned:
Use the maxRetries request option to configure this behavior.
const response = await client.renapo.validateCurp(..., {
maxRetries: 0 // override maxRetries at the request level
});The SDK defaults to a 60 second timeout. Use the timeoutInSeconds option to configure this behavior.
const response = await client.renapo.validateCurp(..., {
timeoutInSeconds: 30 // override timeout to 30s
});The SDK allows users to abort requests at any point by passing in an abort signal.
const controller = new AbortController();
const response = await client.renapo.validateCurp(..., {
abortSignal: controller.signal
});
controller.abort(); // aborts the requestThe SDK provides access to raw response data, including headers, through the .withRawResponse() method.
The .withRawResponse() method returns a promise that results to an object with a data and a rawResponse property.
const { data, rawResponse } = await client.renapo.validateCurp(...).withRawResponse();
console.log(data);
console.log(rawResponse.headers['X-My-Header']);The SDK defaults to node-fetch but will use the global fetch client if present. The SDK works in the following
runtimes:
- Node.js 18+
- Vercel
- Cloudflare Workers
- Deno v1.25+
- Bun 1.0+
- React Native
The SDK provides a way for you to customize the underlying HTTP client / Fetch function. If you're running in an unsupported environment, this provides a way for you to break glass and ensure the SDK works.
import { OrigoidApiClient } from "@origoid/sdk";
const client = new OrigoidApiClient({
...
fetcher: // provide your implementation here
});While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!