Avion Tracker logo Avion Tracker

Documentación de API v5

API pública para ofertas en vivo, estado de ejecución, cobertura de fuentes y exploración de catálogos agregados. Todas las integraciones públicas deben conservar la atribución Avion Tracker y vincularse a https://tracker.discordlabs.app.

Atribución requerida Solicitud de 90/minuto/IP Superficie pública versionada OpenAPI-ready

Puntos finales

Public integrations should target v5 only. The routes below cover status, coverage, feeds and catalog access for websites, widgets and bots.

GET /api/v5/meta

Información de versión, enlaces, límites y resumen de la plataforma.

GET /api/v5/status

Estado del tiempo de ejecución, estado de la puerta de enlace, fragmentos, clústeres y cobertura en vivo.

GET /api/v5/coverage

Desglose fuente por fuente y tienda por tienda para feeds activos.

GET /api/v5/offers

Feed de ofertas públicas en vivo con filtros: modo, clasificación, tienda, plataforma, tipo, límite.

GET /api/v5/catalog

Busque y explore el catálogo con parámetros q, fuente, límite y compensación.

GET /api/v5/trending

Títulos rastreados clasificados por difusión en vivo, entregas gratuitas y cobertura de mercado.

GET /api/v5/latest

Títulos rastreados más recientes y nuevos movimientos del catálogo.

GET /api/v5/freenow

Feed de acceso directo a las ofertas gratuitas actuales, ordenadas por vencimiento más cercano.

GET /api/v5/feeds/source/:sourceKey

Transmisión en vivo por fuente para paneles, widgets y espejos externos.

GET /api/v5/feeds/store/:storeKey

Transmisión en vivo por tienda con controles de modo y clasificación.

GET /api/v5/openapi.json

Contrato OpenAPI legible por máquina para generación de clientes.

Política de uso

Puede incrustar o reflejar datos de API v5, pero su integración debe acreditar visiblemente a Avion Tracker, preservar el enlace de origen a https://tracker.discordlabs.app y mantener intactos los encabezados de derechos de autor. Los controles técnicos reducen el abuso, pero la atribución legal sigue siendo importante.

Derechos de autor

Copyright 2026 Avion Tracker. Public mirrors, embeds and dashboards must attribute Avion Tracker and link back to https://tracker.discordlabs.app.

Protección

API v5 ships with per-IP rate limiting, branding headers, canonical docs links and explicit attribution metadata in every response.

Ejemplos

Use the ready-made public routes below for widgets, cron pulls, websites and dashboards.

Público gratis ahora

curl https://tracker.discordlabs.app/api/v5/freenow?limit=12

Fuente fuente

https://tracker.discordlabs.app/api/v5/feeds/source/epic?mode=free&limit=20

Coverage snapshot

curl https://tracker.discordlabs.app/api/v5/coverage

Nota de implementación

Cache responses briefly, preserve attribution headers, and link back to https://tracker.discordlabs.app whenever you embed or mirror the data.

Respuesta de muestra

Cada respuesta envuelve los datos en un sobre estable con versión, marcas de tiempo y metadatos de atribución.

{
  "apiVersion": "v5",
  "resource": "offers",
  "generatedAt": 1777648050383,
  "attribution": {
    "brand": "Avion Tracker",
    "website": "https://tracker.discordlabs.app",
    "docs": "https://tracker.discordlabs.app/docs/api-v5",
    "dashboard": "https://tracker.discordlabs.app/dashboard",
    "copyright": "Copyright 2026 Avion Tracker. Public mirrors, embeds and dashboards must attribute Avion Tracker and link back to https://tracker.discordlabs.app.",
    "attributionRequired": true
  },
  "data": {
    "total": 2,
    "filtered": 2,
    "mode": "free",
    "sort": "ending",
    "store": null,
    "platform": null,
    "kind": "all",
    "offers": [
      {
        "key": "indiegala:https://www.indiegala.com/giveaways/card/grav-blazer-squared/1196402",
        "externalId": "https://www.indiegala.com/giveaways/card/grav-blazer-squared/1196402",
        "sourceKey": "indiegala-direct",
        "title": "Grav Blazer Squared",
        "description": "Enter the IndieGala giveaway for a chance to win a free key.",
        "url": "https://www.indiegala.com/giveaways/card/grav-blazer-squared/1196402",
        "imageUrl": "https://steamcdn-a.akamaihd.net/steam/apps/703530/header.jpg",
        "store": "indiegala",
        "type": "other",
        "kind": "game",
        "currency": "USD",
        "originalPrice": null,
        "discountedPrice": 0,
        "startsAt": null,
        "endsAt": 1777648382607,
        "platforms": [
          "windows"
        ],
        "rating": null,
        "discountPercent": null,
        "isFree": true
      },
      {
        "key": "indiegala:https://www.indiegala.com/giveaways/card/the-universim/1196261",
        "externalId": "https://www.indiegala.com/giveaways/card/the-universim/1196261",
        "sourceKey": "indiegala-direct",
        "title": "The Universim",
        "description": "Enter the IndieGala giveaway for a chance to win a free key.",
        "url": "https://www.indiegala.com/giveaways/card/the-universim/1196261",
        "imageUrl": "https://steamcdn-a.akamaihd.net/steam/apps/352720/header.jpg",
        "store": "indiegala",
        "type": "other",
        "kind": "game",
        "currency": "USD",
        "originalPrice": null,
        "discountedPrice": 0,
        "startsAt": null,
        "endsAt": 1777649042607,
        "platforms": [
          "windows"
        ],
        "rating": null,
        "discountPercent": null,
        "isFree": true
      }
    ]
  }
}