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

# Get the latest daily business features (intelligence)



## OpenAPI

````yaml /en/openapi.json get /v1/intelligence/features
openapi: 3.1.0
info:
  title: SimplePay API
  version: '2026-06-13'
  description: >-
    Contrato público para integrar SimplePay desde un backend. Incluye
    únicamente operaciones para comercios y administración protegida de
    credenciales.
servers:
  - description: Live
    url: https://api.simplepay.mx
  - description: Sandbox
    url: https://api.test.simplepay.mx
security:
  - SimplePayApiKey: []
tags:
  - name: API keys
  - name: Hosted Checkout
  - name: Payment Links
  - name: Payments
  - name: Refunds
  - name: Webhooks
  - name: Digital Catalog
  - name: Payment Policy
  - name: Reporting
  - name: Workspace
  - name: Customer Hub
  - name: Bookable Payments
  - name: Table Pay
  - name: Physical Checkout
  - name: In-person Payments
  - name: Terminal
  - name: Tap to Pay
  - name: Ticketing
  - name: Admission Control
  - name: Intelligence
externalDocs:
  description: SimplePay developer documentation
  url: https://docs.simplepay.mx
paths:
  /v1/intelligence/features:
    get:
      tags:
        - Intelligence
      summary: Get the latest daily business features (intelligence)
      operationId: getIntelligenceFeatures
      responses:
        '200':
          description: >-
            The latest daily behavioral feature row for the authenticated tenant
            environment, or null before the first daily close.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntelligenceFeaturesResponse'
components:
  schemas:
    IntelligenceFeaturesResponse:
      type: object
      additionalProperties: false
      required:
        - object
        - data
        - as_of
      properties:
        object:
          const: simplepay.v1.intelligence.features
        as_of:
          type:
            - string
            - 'null'
          format: date
        data:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/IntelligenceDailyFeatures'
    IntelligenceDailyFeatures:
      type: object
      additionalProperties: false
      required:
        - feature_date
        - gross_minor
        - net_minor
        - transaction_count
        - failed_count
        - average_ticket_minor
        - active_days_30d
        - frequency_30d
        - gross_30d_minor
        - gross_prev_30d_minor
        - trend_vs_baseline
        - preferred_channel
        - channel_concentration
      properties:
        feature_date:
          type: string
          format: date
        gross_minor:
          type: integer
          format: int64
          minimum: -9007199254740991
          maximum: 9007199254740991
        net_minor:
          type:
            - integer
            - 'null'
          format: int64
          minimum: -9007199254740991
          maximum: 9007199254740991
        transaction_count:
          type: integer
          minimum: 0
        failed_count:
          type: integer
          minimum: 0
        average_ticket_minor:
          type: integer
          format: int64
          minimum: -9007199254740991
          maximum: 9007199254740991
        active_days_30d:
          type: integer
          minimum: 0
        frequency_30d:
          type: integer
          minimum: 0
        gross_30d_minor:
          type: integer
          format: int64
          minimum: -9007199254740991
          maximum: 9007199254740991
        gross_prev_30d_minor:
          type: integer
          format: int64
          minimum: -9007199254740991
          maximum: 9007199254740991
        trend_vs_baseline:
          type:
            - number
            - 'null'
        preferred_channel:
          type:
            - string
            - 'null'
          enum:
            - hosted_checkout
            - payment_link
            - physical_checkout
            - terminal
            - tap_to_pay
            - ticketing
            - other
            - null
        channel_concentration:
          type:
            - number
            - 'null'
          minimum: 0
          maximum: 1
  securitySchemes:
    SimplePayApiKey:
      type: http
      scheme: bearer

````