> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usecroma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DIAN Electronic Document

> Validate a Colombian electronic document (factura electrónica, nota crédito/débito) by its CUFE/UUID and the emisor or receptor NIT. Returns the issuer, recipient, totals and taxes, current legitimate holder, validations, and events.

Supports async delivery: set `Prefer: wait=N` for an inline result, pass `callback_url` to receive a POST when ready, or poll `GET /jobs/{id}`.



## OpenAPI

````yaml /api-reference/openapi.json post /co/dian/electronic-document/v1
openapi: 3.1.0
info:
  title: Croma Marketplace API
  version: 1.0.0
  description: >-
    Government-data APIs for Colombia, Peru, Mexico, and global web search.
    Croma normalizes public-sector data into structured JSON for product teams
    and AI agents.
servers:
  - url: https://api.croma.run
security: []
paths:
  /co/dian/electronic-document/v1:
    post:
      tags:
        - Colombia
        - DIAN
      summary: DIAN Electronic Document
      description: >-
        Validate a Colombian electronic document (factura electrónica, nota
        crédito/débito) by its CUFE/UUID and the emisor or receptor NIT. Returns
        the issuer, recipient, totals and taxes, current legitimate holder,
        validations, and events.


        Supports async delivery: set `Prefer: wait=N` for an inline result, pass
        `callback_url` to receive a POST when ready, or poll `GET /jobs/{id}`.
      operationId: dian_electronic_document
      parameters:
        - name: Prefer
          in: header
          required: false
          description: >-
            Set `wait=N` to hold the connection up to N seconds for an inline
            result. If the job finishes in time you get the normal 200 body;
            otherwise a 202 with a `status_url` to poll.
          schema:
            type: string
            example: wait=30
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - cufe
                - document_number
              properties:
                cufe:
                  type: string
                  minLength: 30
                  maxLength: 100
                  pattern: ^[A-Za-z0-9-]{30,100}$
                  description: >-
                    CUFE/CUDE (unique electronic-document code) or UUID of the
                    document.
                document_number:
                  type: string
                  minLength: 4
                  maxLength: 15
                  pattern: ^\d{4,15}$
                  description: Colombian NIT (numeric, no verification digit). 4-15 digits.
                callback_url:
                  type: string
                  format: uri
                  description: POST the job result here when it finishes.
              additionalProperties: false
            example:
              cufe: >-
                0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
              document_number: '900123456'
      responses:
        '200':
          description: Successful response
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
            X-RateLimit-Limit:
              description: Requests allowed in the current window.
              schema:
                type: integer
            X-RateLimit-Remaining:
              description: Requests left before you are throttled.
              schema:
                type: integer
            X-RateLimit-Reset:
              description: ISO 8601 timestamp when the window resets.
              schema:
                type: string
                format: date-time
            X-Cache:
              description: HIT or MISS. Cached hits still count against your quota.
              schema:
                type: string
                enum:
                  - HIT
                  - MISS
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DianElectronicDocumentResponse'
        '202':
          description: >-
            Accepted — the result is being computed asynchronously. Poll
            `job.status_url` (GET /jobs/{id}) or supply `callback_url` to have
            the result POSTed to you. Returned when `Prefer: wait` elapses
            before completion, or immediately when `callback_url` is set.
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
            Retry-After:
              description: Seconds to wait before retrying.
              schema:
                type: integer
            Location:
              description: Absolute URL to poll for job status.
              schema:
                type: string
                format: uri
                example: https://api.croma.run/jobs/run_123
            X-Job-Id:
              description: Id of the created job.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobEnvelope'
        '400':
          description: Invalid request body
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Missing or invalid API key
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '429':
          description: Rate limit exceeded
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
            X-RateLimit-Limit:
              description: Requests allowed in the current window.
              schema:
                type: integer
            X-RateLimit-Remaining:
              description: Requests left before you are throttled.
              schema:
                type: integer
            X-RateLimit-Reset:
              description: ISO 8601 timestamp when the window resets.
              schema:
                type: string
                format: date-time
            Retry-After:
              description: Seconds to wait before retrying.
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal error
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '502':
          description: Upstream source returned an error
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      security:
        - bearerAuth: []
      externalDocs:
        description: Interactive documentation and examples
        url: https://docs.usecroma.com/guides/colombia/dian
components:
  schemas:
    DianElectronicDocumentResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: object
          required:
            - found
            - cufe
            - document_type
            - series
            - folio
            - issue_date
            - issuer
            - recipient
            - total
            - taxes
            - legitimate_holder
            - validations
            - events
          properties:
            found:
              type: boolean
              description: >-
                true when the CUFE and NIT resolve to a document; false on
                mismatch or not-found.
            cufe:
              type: string
            document_type:
              type:
                - string
                - 'null'
              description: Document class label, e.g. "Factura electrónica".
            series:
              type:
                - string
                - 'null'
            folio:
              type:
                - string
                - 'null'
            issue_date:
              type:
                - string
                - 'null'
              description: Emission date (ISO yyyy-mm-dd).
            issuer:
              type: object
              required:
                - nit
                - name
              properties:
                nit:
                  type:
                    - string
                    - 'null'
                name:
                  type:
                    - string
                    - 'null'
            recipient:
              type: object
              required:
                - nit
                - name
              properties:
                nit:
                  type:
                    - string
                    - 'null'
                name:
                  type:
                    - string
                    - 'null'
            total:
              type:
                - integer
                - 'null'
              description: Document total in COP.
            taxes:
              type: array
              items:
                type: object
                required:
                  - name
                  - value
                properties:
                  name:
                    type: string
                  value:
                    type:
                      - integer
                      - 'null'
                    description: Amount in COP.
            legitimate_holder:
              type:
                - string
                - 'null'
              description: >-
                Current legitimate holder (tenedor legítimo) in the
                electronic-invoice registry.
            validations:
              type: array
              items:
                type: object
                required:
                  - name
                  - result
                  - detail
                properties:
                  name:
                    type: string
                  result:
                    type: string
                  detail:
                    type:
                      - string
                      - 'null'
            events:
              type: array
              items:
                type: object
                required:
                  - description
                  - date
                properties:
                  description:
                    type: string
                  date:
                    type:
                      - string
                      - 'null'
    JobEnvelope:
      type: object
      required:
        - job
        - data
        - error
      description: >-
        Returned by async-capable endpoints (202) and by GET /jobs/{id}. `data`
        holds the endpoint's normal result once `status` is `completed`; `error`
        is populated once `status` is `failed`.
      properties:
        job:
          type: object
          required:
            - id
            - status
            - endpoint
            - created_at
            - finished_at
            - status_url
          properties:
            id:
              type: string
            status:
              type: string
              enum:
                - queued
                - running
                - completed
                - failed
                - canceled
                - expired
            endpoint:
              type: string
              description: The endpoint path that created this job.
            created_at:
              type:
                - string
                - 'null'
              format: date-time
            finished_at:
              type:
                - string
                - 'null'
              format: date-time
            status_url:
              type: string
              format: uri
              description: GET this URL to poll the job.
        data:
          description: The endpoint's normal result object once completed; null until then.
          oneOf:
            - type: object
            - type: 'null'
        error:
          description: Populated once the job has failed; null otherwise.
          oneOf:
            - type: object
              required:
                - type
                - code
                - message
              properties:
                type:
                  type: string
                code:
                  type: string
                message:
                  type: string
            - type: 'null'
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - type
            - code
            - message
          properties:
            type:
              type: string
              description: >-
                Broad category: invalid_request_error, authentication_error,
                not_found_error, rate_limit_error, upstream_error, api_error.
            code:
              type: string
              description: Machine-readable specific code.
            message:
              type: string
              description: Human-readable explanation, safe to surface in UI.
            param:
              type: string
              description: Field that triggered the error. Present on validation errors.
            details:
              type: object
              description: Free-form structured detail.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Use Authorization: Bearer YOUR_API_KEY'

````