Protocol analysis, score sync, dark-web alert export and statement APIs for the com.idiq mobile app — compliant with FCRA and GLBA expectations in the United States.
IdentityIQ (by IDIQ) delivers 3-bureau credit monitoring, dark-web surveillance, SSN and court-record tracking, real-time alerts, and up to $1M identity theft insurance. All of that is high-value, structured data — exactly the kind of information an OpenData / OpenFinance pipeline can standardize, sync to downstream systems, and turn into underwriting, fraud, and compliance signals.
IdentityIQ is one of the longer-running identity and credit protection services in the United States, operated by IDIQ and ranked alongside Aura, LifeLock and Identity Guard in 2025 and 2026 independent reviews. The app unifies signals from the three U.S. nationwide consumer reporting agencies with dark-web intelligence, SSN monitoring, court-record tracking, address-change data from the USPS National Change of Address registry, and real-time push alerts. For teams building underwriting, KYC refresh, first-party fraud, collections, or credit-repair workflows, those signals are far more actionable when they can be read programmatically instead of by hand from the in-app dashboard.
Our role is to extract that value without breaking the user experience or the company's terms: authorized protocol analysis, account-binding APIs, paginated history endpoints, idempotent webhook delivery, and export connectors that write to your stack (Snowflake, BigQuery, Postgres, S3, or direct to a lending / credit-repair platform). Every delivered interface ships with OpenAPI documentation, retry policies, and a privacy & consent note tailored to FCRA and GLBA obligations.
Mirror the IdentityIQ authorization flow used by the com.idiq Android and iOS apps: device registration, token issuance, refresh and revocation. Bind a member once and keep long-lived programmatic access for downstream sync jobs. Example use: a credit-repair CRM auto-refreshes member tokens every 24 hours so dispute workflows never stall on re-login.
Pull the score-tracker time series (VantageScore / FICO depending on plan), including daily or monthly sampling, bureau source, score delta, and the reason-code payload. Concrete use: an internal lending dashboard that flags applicants whose IdentityIQ score dropped more than 30 points in 60 days.
Stream the "Enhanced Credit Monitoring" events — new tradelines, authorized-user additions, inquiries, balance swings — to a webhook with ordered delivery and at-least-once semantics. Concrete use: fraud ops receive an alert when a hard inquiry hits a dormant customer's file within 30 minutes of the bureau notification.
Subscribe to dark-web hits for the member's email, SSN, card numbers, bank accounts and phone. Each event carries a category (marketplace / forum / combo-list), first-seen timestamp and confidence tier. Concrete use: a SOC correlates IdentityIQ hits with corporate SSO signals to prioritize account-takeover response.
Manage up to 10 dependents per primary member — add, suspend, or rotate — and fetch the minor-specific monitoring results (SSN-misuse, synthetic-identity signals). Concrete use: a household benefit platform provisions dependent coverage automatically when a new child is added to an HR record.
Export tri-bureau or single-bureau report JSON (tradelines, inquiries, public records) and render PDF / CSV / XLSX artifacts for downstream storage. Concrete use: a mortgage pre-qualification engine ingests the JSON report nightly and runs its own eligibility rules without pulling a fresh hard inquiry.
Below is a practical inventory of the data surfaces we typically expose when we wrap an IdentityIQ member account as an OpenData / OpenFinance API. Each row maps a user-facing screen to a downstream machine-readable feed.
| Data type | Source screen / feature | Granularity | Typical downstream use |
|---|---|---|---|
| 3-bureau credit report | Reports & Scores tab (Secure Plus / Pro / Max) | Annual / biannual / monthly pull, tradeline-level | Underwriting, credit-repair dispute workflows, KYC refresh |
| Credit score time series | Score Tracker | Daily (primary bureau) or monthly (all three) | Portfolio monitoring, risk-tier re-pricing, attrition models |
| Score simulator results | Score Simulator | On-demand per scenario | Coaching apps, credit-repair ROI projections |
| Enhanced credit monitoring alerts | Real-time push alert stream | Event-level with severity and bureau tag | Fraud ops, SOC, lender first-alert pipelines |
| Dark-web hits | Dark Web Monitoring | Event per identifier / breach source | Account-takeover defense, breach-response triage |
| SSN & identity monitoring | Identity Monitoring dashboard | Event-level, with first-seen timestamp | Synthetic-ID detection, KYB / KYC enrichment |
| Court records & public records | Public-records monitoring | As-filed, per jurisdiction | Collections eligibility, litigation-risk screening |
| Address & NCOA changes | USPS / NCOA tracker | Per change event | Address verification, fraud signals on silent relocations |
| Family-plan dependents | Family dashboard (up to 10) | Per dependent | Employer benefits, minor-identity protection pipelines |
| Insurance & restoration case data | Restoration workspace | Per case, with case notes metadata | Claims reporting, SLA dashboards, audit trails |
A credit-repair CRM needs to ingest each client's tri-bureau report weekly. We build a connector that calls /v1/members/{id}/reports/3b, normalizes tradelines into the Metro 2 style expected by the CRM, and posts disputes back. Maps cleanly to an OpenFinance "credit-bureau data portability" pattern.
A fintech lender subscribes to IdentityIQ Enhanced Credit Monitoring alerts for its borrower base. Our webhook gateway deduplicates events, signs them with HMAC-SHA256, and delivers them to the lender's risk queue so collections can intervene before a charge-off.
An HRIS provisions IdentityIQ family-plan seats when an employee adds a dependent. We expose POST /v1/members/{id}/dependents and DELETE /v1/members/{id}/dependents/{depId} so the HR system stays the source of truth; monitoring results come back on a per-dependent channel.
A security operations team correlates IdentityIQ dark-web hits against corporate SSO logs. We normalize each hit into a STIX-like envelope and push it to the customer's SIEM, enabling rules such as "alert if corporate email surfaces in a combo-list within 24h of suspicious login".
A wealth-management app aggregates identity-risk state alongside brokerage and bank data. We expose a thin /v1/members/{id}/risk-summary endpoint that returns current credit score, open dark-web exposures, and restoration-case status — a single KPI feed for the household dashboard.
POST /api/v1/identityiq/auth/bind
Content-Type: application/json
Authorization: Bearer <PARTNER_KEY>
{
"member_ref": "hrms-emp-91833",
"idiq_username": "jane.doe@example.com",
"consent_scope": ["reports.3b","alerts.enhanced","darkweb.events"],
"consent_signed_at": "2026-04-20T15:04:05Z"
}
200 OK
{
"member_id": "mbr_01HFZX7...",
"access_token": "eyJhbGciOi...",
"refresh_token": "rft_01HF...",
"expires_in": 3600,
"scopes_granted": ["reports.3b","alerts.enhanced","darkweb.events"]
}
GET /api/v1/identityiq/members/{member_id}/reports/3b?as_of=2026-04
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"as_of": "2026-04-01",
"scores": {
"equifax": { "model": "VantageScore 3.0", "value": 712, "delta_30d": -8 },
"experian": { "model": "VantageScore 3.0", "value": 705, "delta_30d": -6 },
"transunion":{ "model": "VantageScore 3.0", "value": 718, "delta_30d": +2 }
},
"tradelines": [ /* ...normalized Metro 2 style entries... */ ],
"inquiries": [ /* ...hard/soft... */ ],
"public_records": [],
"addresses_ncoa": [ { "seen_at": "2026-03-04", "source": "USPS" } ]
}
POST https://customer.example.com/idiq/webhook
X-IDIQ-Signature: t=1714070400,v1=9f12...
Content-Type: application/json
{
"event_id": "evt_01HFZXQ3...",
"member_id": "mbr_01HFZX7...",
"type": "darkweb.hit",
"severity": "high",
"payload": {
"identifier_type": "ssn_last4",
"value_hash": "sha256:7c1f...",
"source": "combolist",
"first_seen": "2026-04-18T09:14:00Z"
}
}
// Error envelope (all endpoints)
{ "error": { "code":"rate_limited","retry_after":30,"message":"..." } }
IdentityIQ data is subject to U.S. consumer-finance privacy rules. Every integration we build is designed around three legal anchors: the Fair Credit Reporting Act (FCRA), which restricts consumer-report use to permissible purposes and requires adverse-action notice; the Gramm-Leach-Bliley Act (GLBA), which governs safeguarding of nonpublic personal information and opt-out rights for sharing with non-affiliates; and state-level privacy regimes such as the California Consumer Privacy Act (CCPA/CPRA).
Before we wire any endpoint, we capture the member's written consent, record the consent scope, and log every data access with an immutable audit trail. For enterprise clients we additionally produce a data-flow document suitable for review by a CFPB-aware compliance officer, including a data-minimization map so that only fields with an explicit business purpose leave the IdentityIQ perimeter. Where cross-border transfer is in scope (e.g., a non-U.S. parent company), we add GDPR-aligned DPA language and SCCs.
A minimal, production-ready IdentityIQ integration has four nodes:
IdentityIQ is a U.S.-focused consumer product (with family plans covering up to 10 dependents), marketed to everyday consumers who want credit-score visibility, dark-web monitoring, and up to $1M identity-theft insurance. Independent reviews in 2025 and 2026 — from Security.org, CyberNews, U.S. News, TechRadar and Money — consistently rank it alongside Aura, LifeLock, Identity Guard and IdentityForce. The app is available on both Android (package com.idiq) and iOS, with four tiers (Secure Basic, Secure Plus, Secure Pro, Secure Max) spanning roughly $6.99 to $32.99 per month in 2025. Our integrations are typically requested by credit-repair SaaS, U.S. fintech lenders, wealth apps with a U.S. household base, and employer-benefit platforms that want identity protection as a payroll-linked perk.
Tap a thumbnail to view a larger version. Images are taken from the public Google Play listing.
Teams rarely integrate IdentityIQ in isolation. A unified identity-risk pipeline usually touches several of the apps below. The list reflects the broader U.S. identity-theft-protection and credit-monitoring ecosystem and is included so that readers searching for any of these tools can find related integration guidance here.
All-in-one suite combining credit monitoring, VPN, password manager and antivirus. Teams that already sync Aura credit alerts often want a unified IdentityIQ + Aura event bus so scores and dark-web hits share a single schema.
One of the largest U.S. identity-theft brands with USPS address monitoring and utility-account alerts. LifeLock events look structurally similar to IdentityIQ's — a shared normalizer eliminates duplicate tradeline notifications.
Identity Guard adds investment-account and home-title monitoring on top of standard credit signals. Household dashboards commonly ingest IdentityIQ and Identity Guard in parallel to cover both identity and asset exposure.
ID Watchdog (Equifax-owned) is known for subprime-loan detection and high-risk transaction flags. In integrations we often map its payloads to the same alert schema used for IdentityIQ to keep downstream rules simple.
NordProtect bundles dark-web monitoring with NordVPN and Incogni data-broker removal. Unified pipelines often treat it as the "privacy hygiene" lane while IdentityIQ handles bureau-grade credit signals.
IdentityForce is a TransUnion-affiliated service with strong social-media monitoring. Enterprise buyers sometimes run IdentityForce and IdentityIQ side-by-side for redundancy — a shared webhook gateway avoids double-paging ops teams.
Experian IdentityWorks sits closest to the bureau itself, with FICO 8 scores and full Experian reports. Portfolios that already pull Experian often add IdentityIQ to obtain the other two bureaus and dark-web coverage.
Credit Karma (Intuit) reaches consumers with free VantageScore from Equifax and TransUnion. Free-tier consumers who upgrade to IdentityIQ for 3-bureau + dark-web coverage are a common migration path our export tooling supports.
myFICO provides the most comprehensive FICO score suite for mortgage and auto underwriting. Mortgage workflows typically combine myFICO score pulls with IdentityIQ alert streams for ongoing post-funding monitoring.
Surfshark Alert focuses on breach and email-leak monitoring as part of a privacy suite. Joint integrations usually route its leak events into the same dark-web topic as IdentityIQ to simplify downstream rules.
Source code delivery from $300 — we hand over runnable API source code and full documentation; pay after delivery upon satisfaction.
Pay-per-call API billing — access our hosted endpoints and pay only for the calls you make. Ideal for teams that want to validate integration economics before committing to a larger build.
We are an independent studio focused on fintech and open-data API integration. Our engineers come from banking, payment gateways, mobile protocol analysis, and cloud security backgrounds. For IdentityIQ specifically, we combine U.S. consumer-finance domain knowledge — FCRA, GLBA, CFPB guidance, CCPA — with practical experience wrapping credit-bureau and identity-risk data sources into clean, auditable APIs.
For quotes, scope review, or to submit a target app and requirements, open our contact page. Tell us which IdentityIQ surfaces you need and which downstream system will consume them — we will reply with a scoped quote and delivery plan.
What do you need from me to start?
How do you handle FCRA permissible purpose?
Can you deliver only webhooks and skip REST?
Do you support iOS and Android protocol parity?
com.idiq build and the iOS App Store build.Pages built for IdentityIQ integration surface cleanly for queries such as IdentityIQ API integration, IdentityIQ credit score export, com.idiq dark web alert webhook, IdentityIQ tri-bureau report JSON, and IdentityIQ family plan dependent provisioning API. We also deliberately touch adjacent ecosystem terms — Aura, LifeLock, Identity Guard, ID Watchdog, NordProtect, IdentityForce, Experian IdentityWorks, Credit Karma, myFICO and Surfshark Alert — because real-world integration roadmaps rarely stop at a single vendor.
IdentityIQ (package com.idiq) is the flagship consumer brand of IDIQ, a U.S. identity-protection and credit-monitoring company. Its tagline — "Get the top-rated service for identity theft protection and credit report monitoring" — reflects a product that bundles tri-bureau credit reports and scores, real-time fraud alerts, dark-web surveillance, SSN and court-record monitoring, USPS address-change tracking, family protection, and up to $1 million in identity-theft insurance with a U.S.-based restoration team.
IDIQ announced the refreshed IdentityIQ app with real-time push alerts in recent years, signaling a shift from email-centric notifications to a mobile-first monitoring experience. The 2025 plan lineup spans four tiers — Secure Basic, Secure Plus, Secure Pro and Secure Max — with pricing roughly from $6.99 to $32.99 per month. Higher tiers add monthly tri-bureau reports, more aggressive dark-web coverage, and enhanced family protection for up to 10 dependents with $25,000 of identity-theft insurance per family member.
This page describes how those consumer-facing capabilities map to an OpenData / OpenFinance integration layer. It is an integration-positioning page from an independent studio and is not affiliated with IDIQ; IdentityIQ and related trademarks belong to their respective owners.