API catalog

APIs · Bureau pulls

All four bureaus. Soft or hard. One response shape.

CIBIL, Experian, Equifax, and CRIF High Mark behind one endpoint. Soft pulls for pre-approval without touching the score, hard pulls when the application is real.

POST /v1/bureau/pull
curl -X POST https://api.neetix.in/v1/bureau/pull \
  -H "Authorization: Bearer sk_live_..." \
  -d '{
    "pan": "ABCPE1234F",
    "type": "soft",
    "bureau": "cibil"
  }'
Response · 200
{
  "score": 761,
  "bureau": "cibil",
  "accounts": 7,
  "active_accounts": 3,
  "dpd_last_12m": 0,
  "inquiries_last_6m": 2
}

Capabilities

What ships in the box.

Soft pull

Pre-approval and monitoring pulls that leave no inquiry footprint.

Hard pull

On-file inquiry for live applications, with consent capture built in.

Structured extraction

Accounts, payment history, DPD strings, and inquiries parsed into one schema across bureaus.

Fallback routing

If the primary bureau times out, route to the next one automatically.

Reference

Endpoints.

  • POST /v1/bureau/pull

    Pull report (soft or hard)
  • GET /v1/bureau/reports/{id}

    Fetch parsed report

Providers

Each provider is an adapter behind the same interface. Pick one per lending program, switch with a config change.

CIBIL · TransUnionExperianEquifaxCRIF High Mark

Questions

Common questions.

Does a soft pull affect the borrower's score?

No. Soft pulls are monitoring inquiries and leave no footprint on the report.

What about report formats?

The decisioning layer parses all 7 bureau report formats into one schema, so downstream rules never care which bureau answered.

Ship your first call today.

Sandbox keys and a Postman collection, with an engineer on the other side of the line.