Merge several templates into one .gitignore
API · /gitignore-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 salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 78 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,136
- attiva
- Chiamate totali
- 76
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 3,300 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,300 calls/month
- 2 req/sec
- Template + list + combine
- No credit card
Starter
€3.70 /mese
- 47,500 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 47.5k calls/month
- 8 req/sec
- Multi-template combine
- Email support
Pro
€11.90 /mese
- 237,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 237k llamadas/mes
- 20 solicitudes/segundo
- Scaffolders / IDEs / CLIs
- Soporte prioritario
Mega
€32.60 /mese
- 1,190,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1.19M calls/month
- 50 req/sec
- Developer-tools platform
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Glob API
Match file paths against glob patterns — the same wildcard language used by .gitignore, CI/CD path filters, build tools and the shell. Test whether a single path matches a pattern, or filter a whole list of paths down to the ones that match. Full minimatch support: * (within a segment) and ** (across segments), ? for one character, [abc] character classes, {a,b,c} brace expansion and extended globs, with options for case-insensitivity, matching dotfiles and basename-only matching. Perfect for path-based rules, file selection, route guards, allow/deny lists and config validation. Pure local computation — no key, no third-party service, instant; send large lists via POST. Live, nothing stored. 3 endpoints. Distinct from regular-expression testing and from JSON path queries.
api.oanor.com/glob-api
Codeberg API
Live-Profil- und Repository-Daten von Codeberg als API – dem von der Community betriebenen, Forgejo-basierten Git-Host und einer führenden Open-Source-Alternative zu GitHub. Rufen Sie jedes Benutzer- oder Organisationsprofil mit Profil und sozialer Reichweite ab (Follower, Gefolgte, markierte Repositories, Beitrittsdatum, Standort und Website), öffnen Sie jedes Repository für seine Statistiken (Sterne, Forks, Watcher, offene Issues, primäre Sprache, Größe und Daten) oder durchsuchen Sie Codebergs Repositories sortiert nach Sternen. Die Git-Forge-Community-Schicht für Entwickler-, Social- und Dashboard-Apps. Live, kein Key, kein Cache. Unterscheidet sich von GitHub- und GitLab-APIs sowie von Package-Registry-APIs – dies sind die eigenen Community- und Projektdaten der Codeberg-Plattform.
api.oanor.com/codeberg-api
Bitbucket API
Read Bitbucket Cloud in real time — no token, no OAuth. Look up any public repository by "workspace/slug" for its full detail (description, language, size, fork policy, mainbranch, timestamps) and pull its commits, branches, tags, pull requests, watchers, forks and file tree (browse any directory at any branch/tag/commit). Inspect any workspace profile and list its public repositories. Pass repo as "workspace/slug" (or a bitbucket.org URL). Every call is live (no cache) and returns the upstream Bitbucket 2.0 shape, paginated with page + pagelen (max 100). 11 endpoints. Calls are routed through a rotating residential proxy so per-IP rate limits never bite. The sibling of our GitHub and GitLab APIs — built for dev dashboards, OSS analytics and repo monitoring across the Atlassian ecosystem. No upstream token, no cache.
api.oanor.com/bitbucket-api
GitLab API
Read GitLab.com in real time — no token, no OAuth. Look up any public project by numeric id or "group/name" path for its full detail (stars, forks, open issues, default branch, visibility, license, topics, timestamps) and pull its commits, branches, tags, releases, issues, merge requests, language breakdown, members and decoded README. Look up any user, list a user's public projects, inspect any group and its projects, and search public projects by keyword with sort + order. Pass project as a numeric id, a "group/name" path or a gitlab.com URL. Every call is live (no cache) and returns the upstream GitLab REST v4 shape, paginated with page + per_page (max 100). 16 endpoints. Calls are routed through a rotating residential proxy so per-IP rate limits never bite. Built for dev dashboards, OSS analytics, CI/CD tooling and repo monitoring across the GitLab ecosystem — the sibling of our GitHub API. No upstream token, no cache.
api.oanor.com/gitlab-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per gitignore API?
Qual è il limite di velocità di gitignore API?
Quanto costa gitignore API?
Posso cancellare l'abbonamento in qualsiasi momento?
gitignore 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/gitignore-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/gitignore-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/gitignore-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/gitignore-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.