Skip to main content
Didit Raises $2M and Joins Y Combinator (W26)
Didit
Back to blog
Blog · May 20, 2026

Argentina Citizens Verification API (AFIP)

Validate Argentina citizenship record against AFIP in real time, billed only on conclusive results. Endpoint, parameters, response schema, pricing, and integration.

By DiditUpdated
argentina-citizens-database-validation.png

Onboarding users in Argentina means confirming they are who they claim to be. Verifies input data to the AFIP (Administracion Federal de Ingresos Publicos). A document or a typed-in detail only proves the data exists — not that it is genuine or belongs to the person in front of you. Argentina Citizens Verification (AFIP) closes that gap by checking the data against AFIP. This guide explains what the check does, the exact technical details, and how to integrate it in minutes.

Key takeaways:

  • What it checks — Argentina Citizens Verification (AFIP) validates citizenship record against AFIP.
  • What you get back — a normalized match_type plus field-level results you can route straight into approve / review / reject logic.
  • Why it matters — Confirming citizenship status against the source registry stops identity fabrication and supports residency, benefits, and regulated-onboarding checks.
  • How to use it — one POST to Didit's database-validation endpoint, or a no-code workflow module. $1.84 per conclusive query, results in seconds.

What Argentina Citizens Verification (AFIP) validates

Verifies input data to the AFIP (Administracion Federal de Ingresos Publicos). Didit exposes it through a single endpoint so you can verify the submitted data against the official citizenship / civil registry and receive a structured, normalized result — not a raw registry dump you have to parse yourself.

A conclusive response returns the matched source_data and a per-field validation block, so your risk engine gets a clear, machine-readable verdict.

Why it matters

Confirming citizenship status against the source registry stops identity fabrication and supports residency, benefits, and regulated-onboarding checks.

For regulated businesses in Argentina — fintechs, crypto platforms, lenders, marketplaces, and gaming operators — checking against an authoritative source produces a defensible, auditable record that identity was confirmed at the source, not merely captured from a form or a photo.

Technical details

Didit exposes this service through the unified database-validation endpoint. It is a single POST — no SDK required.

Endpoint

POST /v3/database-validation/

Request parameters

ParameterTypeRequiredDescription
issuing_statestringYesISO 3166-1 alpha-3 country code. Use ARG.
servicesstringYesService identifier. Use arg_citizens.
first_namestringYesFirst name.
last_namestringYesLast name.
date_of_birthstringYesDate of birth.
document_numberstringYesDocument number.

Example request

curl -X POST "https://verification.didit.me/v3/database-validation/" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "issuing_state=ARG" \
  -F "services=arg_citizens" \
  -F "first_name=John" \
  -F "last_name=Doe" \
  -F "date_of_birth=1990-01-01" \
  -F "document_number=1111111"

Example response (conclusive match)

{
  "request_id": "req_01H...",
  "status": "Approved",
  "issuing_state": "ARG",
  "match_type": "full_match",
  "validations": [
    {
      "outcome_code": "MATCH",
      "service_id": "arg_citizens",
      "service_name": "Argentina Citizens (AFIP)",
      "source_data": {
        "date_of_birth": "1990-01-01",
        "first_name": "John",
        "full_name": "John Doe",
        "identification_number": "SAMPLE-ID-12345",
        "last_name": "Doe",
        "name_match_score": "1.000",
        "verifications": {
          "date_of_birth": true,
          "full_name": true,
          "identification_number": true
        }
      },
      "validation": {
        "date_of_birth": "full_match",
        "full_name": "full_match",
        "identification_number": "full_match"
      }
    }
  ]
}

Performance and billing

  • Latency: typically a couple of seconds.
  • Cost: $1.84 per conclusive query. You are billed only on conclusive results — no charge for source downtime, missing fields, or pre-source rejections.
  • Reliability: runs on Didit's infrastructure with a 99.9% quarterly uptime target.

Use cases

  • Fintech & neobanks — confirm a real, verifiable account holder before opening a wallet or extending credit in Argentina.
  • Crypto & Web3 — meet VASP onboarding requirements with authoritative-source identity proof.
  • Lending — reduce synthetic-identity and first-party fraud with source-verified data.
  • Marketplaces & gig platforms — verify users against authoritative data, not just a self-reported form.
  • iGaming — satisfy identity and eligibility checks for Argentina players with an auditable trail.

How to integrate with Didit

You can run Argentina Citizens Verification (AFIP) two ways:

  1. No-code workflow. In the Didit Business Console, open the Workflow Builder, add the Database Validation module, select Argentina → Argentina Citizens Verification (AFIP), and activate it. Matching users are routed automatically — no engineering required.
  2. Direct API. Call the /v3/database-validation/ endpoint shown above with services=arg_citizens. Read match_type and the per-field validation block to drive your approve / review / reject logic.

Every Didit account includes 500 free verifications per month, so you can test the full flow end-to-end before you pay for a single query.

Frequently asked questions

What does the Argentina Citizens Verification (AFIP) check confirm?

It validates the submitted data against AFIP and returns a normalized match result, so you learn whether the citizenship record exists at the authoritative source and which fields matched.

What happens if the source is temporarily unavailable?

You are not charged. Billing applies only to conclusive results — source downtime, missing fields, and pre-source rejections are free.

How fast is the check?

Database validation typically returns in a couple of seconds, so it fits inside a real-time onboarding flow.

Do I need an SDK?

No. The check is a single HTTPS POST to one endpoint. You can also wire it into a no-code workflow in the Business Console.

Ready to get started?

Validate your first Argentina citizenship record today.

Infrastructure for identity and fraud.

One API for KYC, KYB, Transaction Monitoring, and Wallet Screening. Integrate in 5 minutes.

Ask an AI to summarise this page
Argentina Citizens (AFIP) Verification API | Didit