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

# List toll charges

> Returns Paso Rápido toll charges for your org, ordered by date desc. Includes the validation-pipeline outputs (`validation_status`, `fraud_type`, `location_validation_status`, etc.).



## OpenAPI

````yaml /openapi.json get /paso-rapido/toll-charges
openapi: 3.1.0
info:
  title: United Logistics API
  version: 0.1.0
  description: >-
    Industry-grade public API for fleet, fuel, and toll operations. Every
    endpoint is scoped to the organization owning the API key. Authentication:
    bearer API key (`ulk_<prefix>_<secret>`). Rate limit: 60 requests/minute/key
    by default (override per key via the dashboard).
  contact:
    name: United Logistics Engineering
    email: sfuentes@assetmg.tech
servers:
  - url: https://app.unitedlogistics.com.do/api/v1
    description: Production
  - url: http://localhost:3000/api/v1
    description: Local development
security:
  - ApiKeyAuth: []
paths:
  /paso-rapido/toll-charges:
    get:
      tags:
        - Paso Rápido
      summary: List toll charges
      description: >-
        Returns Paso Rápido toll charges for your org, ordered by date desc.
        Includes the validation-pipeline outputs (`validation_status`,
        `fraud_type`, `location_validation_status`, etc.).
      parameters:
        - schema:
            type: string
            pattern: ^\d+$
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: start
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: end
          in: query
        - schema:
            type: string
            pattern: ^\d+$
          required: false
          name: vehicle_external_id
          in: query
        - schema:
            type: string
          required: false
          name: station
          in: query
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TollChargeListResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorObject'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorObject'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    TollChargeListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TollCharge'
        pagination:
          $ref: '#/components/schemas/PaginationCursor'
      required:
        - data
        - pagination
    ErrorObject:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: unauthorized
            message:
              type: string
              example: Missing Authorization header.
            details: {}
          required:
            - code
            - message
      required:
        - error
    TollCharge:
      type: object
      properties:
        id:
          type: integer
        org_id:
          type:
            - string
            - 'null'
          format: uuid
        date:
          type:
            - string
            - 'null'
        amount:
          type:
            - number
            - 'null'
        tag:
          type:
            - integer
            - 'null'
        station:
          type:
            - string
            - 'null'
        type:
          type:
            - string
            - 'null'
        vehicle_external_id:
          type:
            - integer
            - 'null'
          description: >-
            Vehicle currently attributed to this charge (post-matching). Legacy
            `vehicle_id`.
        matched_vehicle_external_id:
          type:
            - integer
            - 'null'
          description: >-
            Vehicle the validation pipeline matched against (legacy
            `matched_vehicle_id`).
        matched_license_plate:
          type:
            - string
            - 'null'
        matched_message_id:
          type:
            - integer
            - 'null'
        csv_id:
          type:
            - integer
            - 'null'
        import_batch_id:
          type:
            - string
            - 'null'
        validated_at:
          type:
            - string
            - 'null'
        validated_by:
          type:
            - string
            - 'null'
        is_duplicate:
          type:
            - boolean
            - 'null'
        duplicate_resolution:
          type:
            - string
            - 'null'
        duplicate_validation_status:
          type:
            - string
            - 'null'
        category_error:
          type:
            - boolean
            - 'null'
        category_validation_status:
          type:
            - string
            - 'null'
        expected_amount:
          type:
            - number
            - 'null'
        amount_difference:
          type:
            - number
            - 'null'
        tag_status_at_time:
          type:
            - string
            - 'null'
        tag_status_error:
          type:
            - boolean
            - 'null'
        tag_status_validation_status:
          type:
            - string
            - 'null'
        location_validation_status:
          type:
            - string
            - 'null'
        distance_meters:
          type:
            - number
            - 'null'
        time_diff_minutes:
          type:
            - number
            - 'null'
        fraud_type:
          type:
            - string
            - 'null'
        fraud_reasons:
          type:
            - string
            - 'null'
        is_fraudulent:
          type:
            - boolean
            - 'null'
        validation_status:
          type:
            - string
            - 'null'
        validation_details:
          type:
            - string
            - 'null'
        overall_validation_status:
          type:
            - string
            - 'null'
        assignment_date_used:
          type:
            - string
            - 'null'
        fleet:
          type:
            - string
            - 'null'
        manual_revision_status:
          type:
            - string
            - 'null'
        manual_revision_at:
          type:
            - string
            - 'null'
        manual_revision_by:
          type:
            - string
            - 'null'
        manual_revision_comment:
          type:
            - string
            - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - org_id
        - date
        - amount
        - tag
        - station
        - type
        - vehicle_external_id
        - matched_vehicle_external_id
        - matched_license_plate
        - matched_message_id
        - csv_id
        - import_batch_id
        - validated_at
        - validated_by
        - is_duplicate
        - duplicate_resolution
        - duplicate_validation_status
        - category_error
        - category_validation_status
        - expected_amount
        - amount_difference
        - tag_status_at_time
        - tag_status_error
        - tag_status_validation_status
        - location_validation_status
        - distance_meters
        - time_diff_minutes
        - fraud_type
        - fraud_reasons
        - is_fraudulent
        - validation_status
        - validation_details
        - overall_validation_status
        - assignment_date_used
        - fleet
        - manual_revision_status
        - manual_revision_at
        - manual_revision_by
        - manual_revision_comment
        - created_at
        - updated_at
    PaginationCursor:
      type: object
      properties:
        next_cursor:
          type:
            - string
            - 'null'
          description: >-
            Opaque cursor for the next page. Null when there are no more
            results.
          example: eyJpZCI6IjAxQUI...
        has_more:
          type: boolean
      required:
        - next_cursor
        - has_more
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: ulk_<prefix>_<secret>
      description: >-
        Authorization: Bearer ulk_<prefix>_<secret>. Cree la clave en
        Configuración → API.

````