App metadata + install count
API · /flathub-api
Flathub API
The Linux desktop-app store — Flathub (Flatpak) — as an API. Look up any app by its reverse-DNS id for its name, summary and description, developer, license, categories, homepage / bug-tracker / donation links, latest version and release date, screenshot count and total install count; search the whole store by keyword; and read an app's install statistics, including last-month and last-7-day installs and the top countries. Every app comes with the exact `flatpak install` command. Covers the Linux desktop from Firefox, Blender, GIMP, OBS Studio and Inkscape to VLC, Krita and LibreOffice. Live from the official flathub.org API. Ideal for app catalogs and dashboards, software-center integrations, Linux developer tooling and install-analytics. Open data from Flathub.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 169 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,403
- attiva
- Chiamate totali
- 76
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 3,580 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,580 calls/month
- 2 req/sec
- App + search + stats
- No credit card
Starter
€4.25 /mese
- 47,900 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 47.9k calls/month
- 8 req/sec
- Install stats + categories
- Email support
Pro
€12.75 /mese
- 238,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 238k calls/month
- 20 req/sec
- App catalogs / software centers
- Priority support
Mega
€33.95 /mese
- 1,192,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1.19M calls/month
- 50 req/sec
- Linux app-data platform
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
ProtonDB Steam Deck & Linux Compatibility API
Live Linux and Steam Deck compatibility plus popularity for Steam games, from the public ProtonDB and Steam feeds — no key, nothing stored. The "can I play it on Linux / Steam Deck, and is anyone playing it" view of a game: the crowd-sourced ProtonDB compatibility tier together with the live concurrent-player count, distinct from the other game and platform APIs in the catalogue. The game endpoint returns a full picture for a title — its Steam name, genres and release date, the ProtonDB compatibility tier (platinum, gold, silver, bronze or borked) with the community confidence, score and report count, the trending and best-reported tiers, and the live player count. The search endpoint resolves a game name to its Steam app id and other matches, so you can find the id to query. The players endpoint returns just the live concurrent-player count for a game. Build Steam Deck compatibility checkers, Linux gaming dashboards, "is it playable" widgets and game-popularity trackers on top of real ProtonDB and Steam data. Look up a game by Steam app id (appid=1245620) or by name (name=elden ring); ProtonDB tiers run from platinum (flawless) down to borked, and player counts are live.
api.oanor.com/protondb-api
chmod API
Una calculadora de permisos de archivos Unix como API. Convierte una cadena de permisos simbólica (rwxr-xr-x) a su modo octal (755) y viceversa, y explica cualquier modo en inglés sencillo con un desglose por clase (propietario / grupo / otros, cada uno lectura / escritura / ejecución). Soporte completo para los bits especiales — setuid (4), setgid (2) y el sticky bit (1) — por lo que 4755 ↔ rwsr-xr-x y 1777 ↔ rwxrwxrwt se manejan correctamente, incluyendo las formas mayúsculas S/T. Perfecto para Dockerfiles y scripts de CI, herramientas de despliegue y aprovisionamiento, enseñanza, y cualquier momento en que necesites verificar un valor de chmod. Cálculo puramente local — sin clave, sin servicio de terceros, instantáneo. En vivo, nada se almacena. 4 endpoints. Distinto de cualquier cosa que toque archivos reales o redes.
api.oanor.com/chmod-api
AUR API
The Arch User Repository (AUR) as an API. Look up any AUR package for its version, description, upstream URL, maintainer and submitter, community votes and popularity score, license, out-of-date flag, keywords and full dependency lists (depends, make-depends, opt-depends), plus its source snapshot and ready-to-run git-clone command; search the whole AUR by name, description, maintainer, dependencies or keywords (results sorted by popularity); and list every package maintained by a given user. Covers the 90,000+ community-maintained packages of Arch Linux, from yay, paru and visual-studio-code-bin to google-chrome and spotify. Live from the official AUR RPC. Ideal for Arch/AUR helpers and dashboards, package and dependency tooling, and Linux developer portals. Open data from the Arch User Repository.
api.oanor.com/aur-api
App Store API
Search and look up apps on the Apple App Store as an API. Pass a search term and get matching iOS apps with their developer, average star rating and rating count, price, category and icon; or look up a single app by its App Store id (or bundle id) for the full record — description, current version, release and update dates, content rating, minimum iOS version, app size, supported languages, screenshots and the store link. Ratings and price are returned per country (default US). Live from the public iTunes Search API. Ideal for app-store optimisation (ASO), competitor and market research, app directories, review dashboards and mobile-developer tools. Public Apple data.
api.oanor.com/appstore-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Flathub API?
Qual è il limite di velocità di Flathub API?
Quanto costa Flathub API?
Posso cancellare l'abbonamento in qualsiasi momento?
Flathub API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/flathub-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/flathub-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/flathub-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/flathub-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.