Indietro

#developer-tools

35 APIs con questa etichetta

ads.txt API

Fetch and evaluate any publisher's ads.txt / app-ads.txt — the IAB authorized-digital-sellers standard. Pass a domain and the check endpoint fetches its ads.txt server-side, then returns every seller record parsed into its fields — advertising system, the publisher's seller/account id, the DIRECT or RESELLER relationship and the optional certification-authority id (TAG-ID) — alongside counts (direct, reseller, distinct ad systems) and the declared variables OWNERDOMAIN, MANAGERDOMAIN, CONTACT and SUBDOMAINS. The verify endpoint answers the one question programmatic-advertising integrations actually ask: is this advertising system, with this publisher id, authorized to sell this domain's inventory? — returning an authorized boolean and the matching records. A missing file is reported as found:false (not an error), and soft-404 HTML pages are detected and rejected so you never parse a "page not found" as records. The request is made server-side and private or internal targets are refused (SSRF-guarded). Built for ad-tech supply-chain verification, SSP/DSP onboarding checks, anti-fraud and inventory audits. An ads.txt seller-authorization checker — distinct from the security-contact file reader (securitytxt), the robots.txt crawlability evaluator (robots) and the sitemap parser (sitemap). No upstream key, no cache.

api.oanor.com/adstxt-api

Sitemap API

Fetch and parse an XML sitemap (the sitemaps.org protocol). Pass a sitemap URL and the parse endpoint fetches it — following redirects and transparently gunzipping .gz sitemaps — and returns its type: a urlset with every URL and its lastmod, changefreq and priority, or a sitemapindex listing the child sitemaps, with offset/limit paging for large files. The urls endpoint goes further: when the sitemap is an index it fetches the child sitemaps too and flattens every page URL into a single list, with a configurable cap on URLs and child sitemaps and a truncated flag so you stay in control. The request is made server-side and private or internal targets are refused (SSRF-guarded). Built for SEO audits, building crawl queues and content inventories, change monitoring and migration checks. A sitemap fetcher and parser — distinct from generic XML-to-JSON conversion (xml), the robots.txt evaluator (robots) and the on-page SEO audit (seo). No upstream key, no cache.

api.oanor.com/sitemap-api

Text Segmentation API

Count and split text the way people actually read it, using Unicode-correct segmentation. The count endpoint returns the number of grapheme clusters — the real, user-perceived characters, so a family emoji counts as 1 (not 7) and an accented letter as 1 — alongside words, sentences, code points, UTF-16 code units (the naive string length that over-counts) and UTF-8 byte length. This is exactly what character-limit fields, tweet/SMS counters and validation need so the count agrees with what the user sees. The segment endpoint splits text into grapheme, word or sentence segments (word segments are flagged word-like versus punctuation and spaces) and is locale-aware, so Japanese, Chinese and Thai word boundaries come out right. Everything is computed locally with no network calls. A Unicode text segmenter — distinct from the Unicode codepoint database (unicode), the case/text-utilities toolkit (text) and string similarity (similarity). No upstream key, no cache.

api.oanor.com/segmenter-api

Localized Names API

Get the localized display name of a code in any language — countries and regions, languages, currencies, scripts and calendars. Pass a code, a type and a locale and the name endpoint returns the right name: US as region in fr gives "États-Unis", de as language in fr gives "allemand", EUR as currency gives "Euro", and the same code reads correctly in German, Japanese, Arabic or any other locale. The list endpoint returns every code of a type localized and sorted in that locale's collation — ideal for building a country, language or currency dropdown in any language. Powered by the platform's full ICU data (Intl.DisplayNames) and computed locally with no network calls. Built for internationalised forms and pickers, multilingual UIs, localized reports and onboarding. A localized-names resolver — distinct from country reference data in English (countries), number and currency formatting (numberformat) and locale date formatting (datelocale). No upstream key, no cache.

api.oanor.com/displaynames-api

Relative Time & Locale Date API

Humanise timestamps and format dates for any locale and timezone using full ICU. The relative endpoint turns an instant into a localised relative phrase against now (or a given reference time) — "3 hours ago", "vor 3 Stunden", "in 2 days", "il y a 5 minutes" — automatically choosing the best unit from seconds to years. The format endpoint renders a localised date/time string (e.g. "mardi 2 juin 2026 à 15:30" or "2026年6月2日 22:30:00"), honouring the locale (BCP 47), a named IANA timezone, the chosen date and time styles (full/long/medium/short) and 12/24-hour preference, and returns a parts breakdown for custom displays. Pass dates as ISO 8601 or unix timestamps. Everything is computed locally with no network calls. Ideal for internationalised UIs, activity feeds, notifications, comments and dashboards. A relative-time and locale date formatter — distinct from current-time-in-a-timezone (time), the UTC parse/token toolkit (datetime) and number/currency formatting (numberformat). No upstream key, no cache.

api.oanor.com/datelocale-api

Number & Currency Formatter API

Format numbers for any locale using full ICU data — the correct way to display money, percentages and measurements per region. Pass a value and a style and the format endpoint returns the locale-correct string: decimal, currency (any ISO 4217 code, with the right symbol and grouping — e.g. 1.234.567,89 € in de-DE, $1,234,567.89 in en-US, ¥1,234,567 in ja-JP, and the Indian lakh grouping 12,34,567.89 in hi-IN), percent, or unit (e.g. 80 km/h). Control the locale (BCP 47), minimum/maximum fraction digits, grouping, sign display and notation (standard, scientific, engineering or compact like 1.2M). A parts endpoint returns the formatToParts breakdown (integer, group, decimal, fraction, currency symbol…) for building custom-styled displays. Everything is computed locally with no network calls. Ideal for internationalised UIs, invoices and receipts, dashboards and reports. A locale number/currency formatter — distinct from foreign-exchange rates (currency), number-to-words (numberwords) and the numeral-base converter (baseconvert). No upstream key, no cache.

api.oanor.com/numberformat-api

Number Base Converter API

Convert integers between any numeral systems with exact big-integer math. Pass a number and a from/to base (radix 2 to 36, arbitrarily large, signed) and the convert endpoint returns the result and the decimal value; common 0x, 0b and 0o prefixes are accepted when they match the base, and whitespace or underscores in the input are ignored. The bases endpoint shows a single number across binary, octal, decimal, hexadecimal, base32 and base36 at once, together with its bit length, byte length and sign. Everything is computed locally with BigInt, so values of any size are exact and deterministic. Ideal for low-level and embedded debugging, networking and bit-twiddling work, teaching number systems, and anywhere you juggle hex, binary and decimal. A numeral-base converter — distinct from the text-encoding toolkit (encoding: base64/base32/hex of bytes), the Elixir/Erlang Hex package registry (hex) and number-to-words (numberwords). No upstream key, no cache.

api.oanor.com/baseconvert-api

JSON Types API

Infer a schema or types from a sample JSON document — the fastest way to get a contract out of an example API response. Pass a JSON sample and the schema endpoint returns a JSON Schema (Draft 2020-12) with detected types, required keys, array item schemas merged across elements, and recognised string formats (email, uri, uuid, date-time, date, ipv4); the typescript endpoint returns ready-to-paste TypeScript interfaces with named nested interfaces, typed arrays, unions for mixed-shape array elements and structural de-duplication. Supply the sample inline via ?json=, as a query parameter, or as a request body. Everything is computed locally with no network calls, so it is fast and deterministic. Built for scaffolding types from real API responses, generating validation schemas, documentation, contract testing and code generation. A JSON type/schema inferer — distinct from JSON-Schema validation (jsonschema), JSON pretty-printing and conversion (json), and JSON diff/patch (jsondiff). No upstream key, no cache.

api.oanor.com/jsontypes-api

Snowflake ID API

Decode and build snowflake IDs — the 64-bit, time-sortable identifiers used by Twitter/X, Discord, Instagram and many distributed systems. Pass an ID and a platform and the service extracts the embedded creation timestamp (turn any Discord, Twitter/X or Instagram ID into the exact moment it was created) along with the machine and sequence components for that platform's epoch and bit layout. Supported platforms: twitter (X), discord, instagram, sony, and custom (supply your own epoch). The encode endpoint does the reverse: build the lower-bound snowflake for a given timestamp, so you can query "all IDs created at or after this moment" — the standard trick for time-based pagination on snowflake APIs. Everything is computed locally with exact 64-bit BigInt math and no network calls. Ideal for analytics, data forensics, API pagination and debugging distributed-ID systems. A snowflake-ID toolkit — distinct from UUID/ULID generation (uuid) and date/time math (datetime). No upstream key, no cache.

api.oanor.com/snowflake-api

JSON Diff & Patch API

Compare and patch JSON documents to RFC standards. Pass two documents and the service returns whether they are equal, an RFC 6902 JSON Patch (the precise add/remove/replace operations that turn the first into the second, using RFC 6901 JSON-Pointer paths), a change summary, and an RFC 7386 JSON Merge Patch. The patch endpoint goes the other way: apply an RFC 6902 patch (add, remove, replace, move, copy and test operations) or an RFC 7386 merge patch to a document and get the result. Documents can be sent inline or as a JSON body. Everything is computed locally with no network calls, so it is fast and deterministic. Built for configuration and state management, API change detection, audit trails and change logs, optimistic-concurrency checks and data-sync pipelines. A JSON diff/patch engine — distinct from text diffing (textdiff), JSONPath querying (jsonpath), JSON validation and pretty-printing (json) and JSON-Schema validation (jsonschema). No upstream key, no cache.

api.oanor.com/jsondiff-api

OpenAPI Validator API

Valida e resume uma definição de API OpenAPI / Swagger. Forneça a especificação inline (?spec=), como corpo da requisição, ou buscada de uma URL (?url=, protegida contra SSRF) — em JSON ou YAML. O validador detecta a versão (Swagger 2.0, OpenAPI 3.0.x ou 3.1.x), verifica a estrutura necessária (info.title e info.version, a presença de paths/components, e as responses de cada operação), e faz lint para problemas comuns — operationIds duplicados ou ausentes, operações sem summary ou description, tags usadas mas não declaradas, e paths malformados — retornando um flag válido, contagens de paths, operações, schemas, tags e servidores, e listas separadas de erros e avisos. Um endpoint de resumo inventaria toda a API: cada endpoint com seu método, path, operationId, summary e tags, além dos servidores, tags e schemas de componentes declarados. Construído para gates de CI em contratos de API, ingestão de catálogo de APIs, pipelines de documentação e revisão de design. Um validador e linter de definição OpenAPI — distinto do validador JSON-Schema (jsonschema), dos conversores JSON/YAML/XML e das ferramentas HTML/SEO na página. Sem chave upstream, sem cache.

api.oanor.com/openapi-api

Codeforces API

Codeforces como API — la plataforma de programación competitiva más grande, que ejecuta rondas clasificatorias regulares para cientos de miles de programadores en todo el mundo. Esta API envuelve la API oficial de Codeforces en un servicio JSON limpio y predecible. /v1/user busca el perfil de uno o varios competidores: calificación actual y máxima con el rango/título correspondiente (desde novato hasta gran maestro legendario), puntuación de contribución, país, ciudad, organización, fecha de registro y avatar. /v1/rating devuelve el historial completo de calificaciones de un competidor, concurso por concurso, con la calificación anterior y nueva, el cambio de calificación y el rango alcanzado en cada ronda — ideal para trazar una curva de calificación. /v1/contests lista los próximos concursos y los pasados, filtrables por fase (BEFORE para el calendario de próximas rondas, FINISHED para el archivo), cada uno con hora de inicio, duración y tipo. /v1/problems busca en todo el conjunto de problemas de Codeforces por etiqueta (dp, grafos, greedy, matemáticas, implementación, estructuras de datos y docenas más) y por rango de dificultad, devolviendo el id del concurso, índice, nombre, calificación de dificultad y etiquetas de cada problema con un enlace directo. Las calificaciones van desde ~800 hasta 3500+. Ideal para paneles de programación competitiva, rastreadores de calificaciones, herramientas de entrenamiento y recomendación de problemas, y bots de Discord/Telegram para comunidades de CP. Datos de la API oficial de Codeforces, de uso gratuito. El servicio es resistente al límite de concurrencia de Codeforces (reintento automático con retroceso).

api.oanor.com/codeforces-api

deps.dev API

Inteligência de cadeia de suprimentos e dependências de software como uma API, alimentada por deps.dev — o serviço Google Open Source Insights. Em seis ecossistemas de pacotes (npm, PyPI, Maven, Cargo, Go e NuGet), responde às perguntas que um registro não pode: o que a instalação deste pacote realmente puxa e quão saudável é o projeto por trás dele. Liste as versões publicadas de um pacote e sua versão padrão; leia as licenças declaradas de uma versão específica, as chaves de quaisquer avisos de segurança conhecidos, links úteis (repositório de origem, página inicial, rastreador de problemas) e projetos relacionados; resolva o gráfico de dependências TRANSITIVAS completo de uma versão — a contagem total de dependências, as dependências diretas e cada nó transitivo com sua versão exata resolvida e se é uma dependência direta ou indireta; e consulte o OpenSSF Scorecard de um projeto de origem — a pontuação geral de segurança mais os resultados por verificação para Mantido, Revisão de Código, Proteção de Ramo, Fluxo de Trabalho Perigoso, Vulnerabilidades e mais — junto com suas estrelas, forks, problemas abertos, licença e página inicial. Para módulos Go e artefatos Maven, o nome do pacote é o caminho completo do módulo ou grupo:artefato (codificado em URL automaticamente). Ideal para auditoria de dependências, enriquecimento de lista de materiais de software (SBOM), avaliação de risco da cadeia de suprimentos e ferramentas de conformidade de licenças. Dados de deps.dev (Google, CC-BY).

api.oanor.com/depsdev-api

API de fim de vida (EOL)

Datas de fim de vida e ciclo de suporte de produtos como uma API, alimentada por endoflife.date — a referência mantida pela comunidade para quando o software deixa de ser suportado. Abrange mais de 450 produtos em todas as camadas da pilha: distribuições Linux (Ubuntu, Debian, RHEL, Alpine…), linguagens de programação (PHP, Python, Node.js, Java, Go, Ruby…), frameworks (Django, Laravel, Spring Boot, React, Angular…), bancos de dados (PostgreSQL, MySQL, MongoDB, Redis…), sistemas operacionais, navegadores, dispositivos de hardware e muito mais. Liste todos os produtos rastreados; para qualquer produto, obtenha todos os seus ciclos de lançamento com a data de lançamento, versão de patch mais recente e data de lançamento, flag LTS, data de fim do suporte ativo e data de fim de vida; e consulte um único ciclo de lançamento individualmente. Cada ciclo é enriquecido com um status computado e ao vivo calculado em relação à data atual — se a versão ainda é suportada, se já atingiu o fim de vida, quantos dias restam até o fim de vida e se o suporte ativo terminou — para que você possa responder "esta versão ainda é suportada?" e "quanto tempo até eu precisar atualizar?" em uma única chamada. Ideal para auditoria de dependências, planejamento de atualização e migração, painéis de segurança e conformidade, verificações de CI e inventários de plataforma. Os slugs dos produtos vêm do endpoint de produtos (ex.: php, ubuntu, nodejs, postgresql). O status computado é relativo à data UTC atual. Dados de endoflife.date (CC-BY-SA).

api.oanor.com/endoflife-api

Terraform Registry API

Terraform Registry — 所有 Terraform 和 OpenTofu 模块与提供者的家园 — 以 API 形式呈现。查询任意模块的最新版本、总下载量、源代码仓库、验证状态、发布日期以及可直接粘贴的使用代码块,同时获取其输入、输出和托管资源的数量;读取模块的完整版本历史;搜索包含数千个社区模块的注册中心(可按提供者筛选);查询任意提供者的版本、下载次数和层级(官方/合作伙伴/社区)。覆盖基础设施即代码生态系统,从 terraform-aws-modules 的 VPC、EKS 和 RDS 模块到 hashicorp/aws、google 和 azurerm 提供者。数据来自官方 registry.terraform.io API。适用于 IaC 和 GitOps 工具、模块目录和仪表板,以及平台工程自动化。来自 Terraform Registry 的开放数据。

api.oanor.com/terraform-api

Artifact Hub API

Artifact Hub — the CNCF registry for cloud-native packages — as an API. Look up any Helm chart, OLM operator, Falco rule, OPA / Kyverno / Gatekeeper policy, Krew kubectl plugin, Tekton task and more for its version and app version, description, license, maintainers, keywords, repository (with verified-publisher and official flags), home and source links, and its full version history. Search the registry across any package kind. Covers the Kubernetes / cloud-native ecosystem from the Bitnami, Prometheus and Grafana Helm charts to Krew plugins and security policies. Live from the official artifacthub.io API. Ideal for GitOps and DevOps dashboards, supply-chain and update tooling, internal chart catalogs and Kubernetes platform engineering. Open data from Artifact Hub.

api.oanor.com/artifacthub-api

Open VSX API

El registro abierto de extensiones de VS Code — Open VSX — como API. Open VSX es el mercado neutral de proveedores detrás de VSCodium, Gitpod, Eclipse Theia, Cursor y muchos otros editores. Busque cualquier extensión por su ID namespace.name para obtener su nombre y descripción, última versión, editor, número total de descargas, calificación promedio, licencia, categorías y etiquetas, enlaces al repositorio y página de inicio, y el comando exacto `code --install-extension`; lea el historial completo de versiones de una extensión; y busque en el registro por palabra clave, ordenado por descargas. Cubre el ecosistema de extensiones de editores desde Python, Java y ESLint hasta Prettier, GitLens y los principales temas y paquetes de idiomas. En vivo desde la API oficial de open-vsx.org. Ideal para herramientas de editores e IDE, catálogos y paneles de extensiones, e integraciones con portales de desarrolladores. Datos abiertos de Open VSX.

api.oanor.com/openvsx-api

Docker Hub API

容器镜像仓库——Docker Hub——作为API。查询任何镜像(仓库)的描述、总拉取次数和星标数、官方状态、最后更新日期和分类,以及可直接运行的`docker pull`命令;列出镜像的标签和版本,每个标签的压缩大小、支持的平台(linux/amd64、linux/arm64等)和发布日期;搜索拥有数百万镜像的仓库。涵盖从官方镜像如nginx、postgres、redis、node、python和ubuntu到供应商镜像如bitnami/postgresql的所有内容。实时数据来自官方hub.docker.com API。适用于DevOps仪表板、CI/CD和供应链工具、镜像目录和更新自动化。来自Docker Hub的开放数据。

api.oanor.com/docker-api

WordPress Directory API

El directorio oficial de plugins y temas de WordPress.org como API — el registro detrás del ~40% de la web que funciona con WordPress. Busca cualquier plugin o tema por su slug para obtener su nombre, versión, autor, calificación de usuario y número de calificaciones, número de instalaciones activas y descargas totales, las versiones de WordPress y PHP que requiere, fecha de última actualización, página de inicio, URL de soporte y enlace de descarga directa; y busca en el directorio por palabra clave (plugins o temas), con resultados ordenados por instalaciones activas. Cubre los más de 60,000 plugins gratuitos y más de 13,000 temas en WordPress.org, desde WooCommerce, Yoast SEO y Elementor hasta Contact Form 7 y Jetpack. En vivo desde la API oficial api.wordpress.org. Ideal para paneles de WordPress y administradores de sitios, catálogos de plugins/temas, herramientas de compatibilidad y actualización, y el ecosistema de desarrolladores de WordPress. Datos abiertos de WordPress.org.

api.oanor.com/wordpress-api

Iconify Icons API

The open-source icon universe — Iconify — as an API. Search across 200,000+ icons from 200+ icon sets (Material Symbols, Material Design Icons, Font Awesome, Tabler, Lucide, Phosphor, Simple Icons, brand logos and more); get any icon's SVG path, dimensions and a ready-to-use, copy-paste `<svg>` string plus a direct .svg URL; and browse the icon sets with their author, license and icon count. Every icon is addressed by a simple `prefix:name` id (e.g. mdi:home, logos:github). Live from the official api.iconify.design. Ideal for design tools and icon pickers, no-code and website builders, documentation and component libraries, and any app that needs scalable icons. Open-source icons, each with its set's license.

api.oanor.com/iconify-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

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

CPAN API

The Perl package ecosystem — CPAN, the Comprehensive Perl Archive Network — as an API. Look up any distribution for its abstract, latest version, author, license, homepage / repository / bug-tracker links, runtime dependencies and download URL; find which distribution provides a given Perl module (e.g. JSON::PP, LWP::UserAgent); read a distribution's full release history with dates; and search the entire CPAN registry by keyword. Covers the Perl ecosystem from Mojolicious, Moose, DBI and Catalyst to JSON, Plack and the Dancer framework. Live from the official MetaCPAN API. Ideal for package dashboards, dependency and supply-chain tooling, Perl developer portals and CPAN ecosystem analytics. Open data from CPAN.

api.oanor.com/cpan-api

Hex API

Elixir和Erlang包生态系统——Hex(hex.pm)——作为API。查找任何Hex包的描述、许可证、最新版本、GitHub/文档/更新日志链接、所有者以及下载次数(全部时间和近期);阅读包的完整发布历史及发布日期;获取单个版本的依赖列表、Elixir版本约束和构建工具;通过关键字搜索整个Hex注册表。涵盖Elixir/Erlang(BEAM)生态系统,从Phoenix、Ecto和Plug到Jason、Absinthe和Nerves。实时来自官方hex.pm API。适用于包仪表板、依赖和供应链工具、Elixir开发者门户和BEAM生态系统分析。来自Hex的开放数据。

api.oanor.com/hex-api

CRAN API

El ecosistema de paquetes R — CRAN, la Red Integral de Archivos R — como una API. Busque cualquier paquete R por su título, descripción, versión, licencia, mantenedor y autor, enlaces a la página principal y al rastreador de errores, y su árbol de dependencias completo (depende, importa, sugiere, enlaza a); lea el historial completo de versiones de un paquete con fechas de publicación; busque en todo el registro de CRAN por palabra clave; y obtenga estadísticas de descarga (último día, semana o mes, con una serie diaria opcional) directamente de los registros oficiales de descarga de CRAN. Cubre los ~22,000 paquetes en CRAN, desde ggplot2, dplyr y data.table hasta jsonlite, shiny y el amplio tidyverse. En vivo desde los servicios oficiales de la comunidad R (crandb, search.r-pkg.org, cranlogs). Ideal para paneles de paquetes, herramientas de dependencias y cadena de suministro, portales de desarrolladores de ciencia de datos y análisis del ecosistema R. Datos abiertos de CRAN.

api.oanor.com/cran-api

pub.dev API

El registro pub.dev — hogar del ecosistema de paquetes Dart y Flutter — como API. Busca cualquier paquete por su descripción, última versión, repositorio, documentación y enlaces de página principal, restricción de Dart SDK, si es un paquete Flutter, sus dependencias e historial de versiones recientes; busca en el registro por palabra clave (ordenado por relevancia, popularidad, me gusta, puntos, descargas o actualidad); y lee la puntuación de popularidad de un paquete — su conteo de me gusta, puntos pub sobre el máximo, porcentaje de popularidad y conteo de descargas en 30 días. En vivo desde la API oficial de pub.dev. Ideal para paneles de paquetes, herramientas de dependencias y cadena de suministro, portales de desarrolladores Flutter y análisis de ecosistemas. Datos abiertos de pub.dev.

api.oanor.com/pubdev-api

Packagist API

El registro de Packagist.org — el ecosistema de paquetes de PHP y Composer — como una API. Busque cualquier paquete (vendor/package, ej. monolog/monolog, laravel/framework, symfony/console) para obtener su descripción, tipo, conteo de descargas totales/mensuales/diarias, estrellas de GitHub, bifurcaciones y problemas abiertos, número de dependientes, última versión estable y su requisito de PHP; busque en el registro por palabra clave y etiqueta; y liste el historial completo de versiones de un paquete (la más reciente primero). En vivo desde la API oficial de Packagist. Ideal para paneles de paquetes, herramientas de dependencias y cadena de suministro, portales de desarrolladores y análisis del ecosistema PHP. Datos abiertos de Packagist.org.

api.oanor.com/packagist-api

NuGet API

NuGet.org レジストリ — .NET のパッケージエコシステム — を API として提供します。任意の NuGet パッケージの説明、最新バージョン、総ダウンロード数、作成者、タグ、プロジェクト、ライセンス、アイコンの URL を検索できます。キーワードで数百万のパッケージを横断検索したり、パッケージの全バージョン履歴(新しい順)を一覧表示したりできます。公式 NuGet API からリアルタイムで提供。パッケージダッシュボード、依存関係・サプライチェーンツール、開発者ポータル、.NET エコシステム分析に最適。NuGet.org のオープンデータ。

api.oanor.com/nuget-api

Ruby Gems API

El registro de RubyGems.org — hogar del ecosistema Ruby — como API. Busque cualquier gema por su descripción, versión actual, total de descargas y por versión, autores, licencia, página de inicio, enlaces de fuente y documentación, y sus dependencias de ejecución y desarrollo; busque en el registro por palabra clave; y navegue por el historial completo de versiones de una gema con números de descarga por versión. En vivo desde la API oficial de RubyGems.org. Ideal para paneles de paquetes, herramientas de dependencias y cadena de suministro, portales de desarrolladores y análisis del ecosistema Ruby. Datos abiertos de RubyGems.org.

api.oanor.com/rubygems-api

Rust Crates API

Il registro crates.io — casa dell'ecosistema Rust — come API. Cerca qualsiasi crate Rust per la sua descrizione, versioni più recenti e recenti, conteggi di download totali e recenti, licenza, repository, documentazione e link alla homepage, parole chiave e categorie; cerca e classifica l'intero registro per rilevanza, download, download recenti, aggiornamenti recenti o più nuovi; e ispeziona l'albero delle dipendenze della versione più recente (o qualsiasi altra) di un crate. In diretta dall'API ufficiale di crates.io. Ideale per dashboard di pacchetti, strumenti per le dipendenze, analisi di sicurezza/supply-chain, portali per sviluppatori e analisi dell'ecosistema Rust. Dati aperti da crates.io.

api.oanor.com/crates-api

gitignore API

Genera archivos .gitignore como una API — 309 plantillas .gitignore listas para usar para lenguajes, frameworks, herramientas y editores, directamente de la colección oficial github/gitignore de GitHub. Obtén el .gitignore para cualquier tecnología individual (Node, Python, Java, Rust, Unity, …), busca y lista todas las plantillas disponibles por nombre o categoría (lenguajes, globales de editores/SO, stacks comunitarios), o — la función principal — combina varias plantillas en un solo .gitignore listo para commit en una sola llamada (ej. names=Node,Python,macOS). Ideal para herramientas de scaffolding, generadores de proyectos, IDEs, CLIs y paneles de desarrolladores. Datos abiertos de github/gitignore (CC0).

api.oanor.com/gitignore-api

tldr CLI Help API

Simplified, example-driven help for the command line as an API — the community tldr-pages project, 7,045 command-line tools across Linux, macOS, Windows and more. Instead of dense man pages, every command (tar, git, ffmpeg, curl, docker, ssh, awk, …) comes back as a short description plus a handful of practical, copy-paste example commands with placeholders. Look up a command, search commands by name or description, filter by platform, or fetch a random command. Ideal for terminals, IDEs, chatbots, developer tools, onboarding and learning. Open data from tldr-pages (CC-BY).

api.oanor.com/tldr-api