Avion Tracker logo Avion Tracker

Documentazione API v5

API pubblica per offerte in tempo reale, stato di runtime, copertura della fonte e navigazione del catalogo aggregato. Tutte le integrazioni pubbliche devono preservare l'attribuzione Avion Tracker e ricollegarsi a https://tracker.discordlabs.app.

Attribuzione richiesta 90 richiesta/minuto/IP Superficie pubblica versione OpenAPI-ready

Endpoint

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

Informazioni sulla versione, collegamenti, limiti e riepilogo della piattaforma.

GET /api/v5/status

Integrità del runtime, stato del gateway, shard, cluster e copertura in tempo reale.

GET /api/v5/coverage

Suddivisione fonte per fonte e negozio per negozio per i feed attivi.

GET /api/v5/offers

Feed delle offerte live pubbliche con filtri: modalità, ordinamento, negozio, piattaforma, tipo, limite.

GET /api/v5/catalog

Ricerca e navigazione nel catalogo con i parametri q, source, limit e offset.

GET /api/v5/trending

Titoli monitorati classificati in base alla diffusione in tempo reale, ai drop gratuiti e alla copertura del mercato.

GET /api/v5/latest

Titoli monitorati più recenti e nuovi movimenti del catalogo.

GET /api/v5/freenow

Feed di scelta rapida per le offerte attualmente gratuite, ordinate per scadenza più vicina.

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

Feed live per sorgente per dashboard, widget e mirror esterni.

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

Feed live per negozio con controlli di modalità e ordinamento.

GET /api/v5/openapi.json

Contratto OpenAPI leggibile dalla macchina per la generazione di client.

Politica di utilizzo

Puoi incorporare o eseguire il mirroring dei dati API v5, ma la tua integrazione deve dare visibilmente credito a Avion Tracker, preservare il collegamento di origine a https://tracker.discordlabs.app e mantenere intatte le intestazioni di copyright. I controlli tecnici riducono gli abusi, ma l’attribuzione legale è ancora importante.

Diritto d'autore

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

Protezione

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

Esempi

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

Pubblico libero adesso

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

Alimentazione di origine

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

Coverage snapshot

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

Nota di distribuzione

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

Esempio di risposta

Ogni risposta racchiude i dati in una busta stabile con versione, timestamp e metadati di attribuzione.

{
  "apiVersion": "v5",
  "resource": "offers",
  "generatedAt": 1777647950719,
  "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
      }
    ]
  }
}