Packages maintained by a user
API · /aur-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 salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 193 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,722
- attiva
- Chiamate totali
- 109
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 3,470 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,470 calls/month
- 2 req/sec
- Package + search + maintainer
- No credit card
Starter
€4.05 /mese
- 46,300 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 46.3k calls/month
- 8 req/sec
- Dependencies + votes/popularity
- Email support
Pro
€12.35 /mese
- 231,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 231k calls/month
- 20 req/sec
- AUR helpers / dependency tooling
- Priority support
Mega
€32.75 /mese
- 1,176,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1.18M calls/month
- 50 req/sec
- Arch package-data platform
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
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.oanor.com/flathub-api
Homebrew API
macOS和Linux包管理器——Homebrew(brew)——作为API。查找任何公式(命令行包)的描述、最新版本、许可证、主页、依赖项和构建依赖项、注意事项和弃用状态;查找任何cask(图形化macOS应用)的版本、捆绑应用和主页;并通过名称和描述搜索整个包含8300多个公式和7600多个cask的注册表。每个结果都附带确切的`brew install`命令。涵盖Homebrew世界,从wget、git、ffmpeg、node和python到Firefox、Visual Studio Code、Docker和Rectangle。实时数据来自官方formulae.brew.sh API。非常适合开发者仪表板、包和依赖工具、dotfiles和设置自动化以及macOS应用目录。来自Homebrew的开放数据。
api.oanor.com/brew-api
Go Modules API
The Go package ecosystem as an API. Look up any Go module by its import path for its latest version, license, source repository, total version count and known security advisories; read a module's full version history with publication dates; and get a module's declared dependencies — direct and indirect — parsed straight from its go.mod, with the required Go version. Covers the entire public Go module graph, from github.com/gin-gonic/gin, github.com/spf13/cobra and golang.org/x/text to gorm.io/gorm and k8s.io/client-go. Live from the official Go module proxy (proxy.golang.org) and Google's deps.dev. Ideal for dependency and supply-chain tooling, SBOM generation, package dashboards and Go developer portals. Modules are addressed by full import path. Open data.
api.oanor.com/gomod-api
CTAN API
El ecosistema de paquetes TeX y LaTeX — CTAN, la Comprehensive TeX Archive Network — como una API. Consulte cualquiera de los ~6,900 paquetes de CTAN para obtener su título y descripción, última versión y fecha, licencia, autores (con nombres resueltos), alias, temas, enlaces de inicio y repositorio, y si se distribuye con MiKTeX y TeX Live; busque en todo el registro por nombre y título; y resuelva cualquier ID de autor de CTAN a un nombre. Cubre el mundo TeX/LaTeX desde PGF/TikZ, Beamer y KOMA-Script hasta amsmath, biblatex y listings. En vivo desde la API JSON oficial de CTAN. Ideal para editores y herramientas de LaTeX, paneles de paquetes, tuberías de publicación académica y análisis del ecosistema TeX. Datos abiertos de CTAN.
api.oanor.com/ctan-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per AUR API?
Qual è il limite di velocità di AUR API?
Quanto costa AUR API?
Posso cancellare l'abbonamento in qualsiasi momento?
AUR 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/aur-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/aur-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/aur-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/aur-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.