Back to news
devops Priority 4/5 6/9/2026, 11:05:15 AM

Vercel Releases skills.sh API Providing Access to Over 600,000 Open Source Skill Datasets Via OIDC

Vercel Releases skills.sh API Providing Access to Over 600,000 Open Source Skill Datasets Via OIDC

Vercel has introduced the skills.sh API, establishing a centralized hub for querying over 600,000 software skill profiles and security audit results aggregated from open-source projects. To access this repository, developers utilize project-level OpenID Connect tokens directly from their Vercel environments. This architectural shift from static API keys to temporary, automatically rotated OIDC tokens drastically reduces the risk of secret leaks and removes manual management overhead.

Related tools

Recommended tools for this topic

These picks prioritize high-intent tools relevant to this topic. Some links may include partner or affiliate tracking.

#vercel#api#oidc#oss

Comparison

AspectBefore / AlternativeAfter / This
Authentication methodStatic, long-lived API keys requiring manual rotationShort-lived, project-level OIDC tokens rotated automatically
Data retrievalManual queries across multiple scattered open-source platformsCentralized programmatic queries via a unified API endpoint
Security integrationAd-hoc manual validation of dependency security recordsAutomated ingestion of standardized security audit logs
Request throughputLow rate limits on third-party public scrapersDedicated allocation of 600 requests per minute per project

Action Checklist

  1. Configure the OIDC issuer trust relationship in your Vercel project settings Ensure your project has the appropriate environment variables and permissions set up to request trust.
  2. Generate a short-lived OIDC token programmatically during runtime Avoid hardcoding any tokens or saving them to disk.
  3. Send HTTP requests containing the bearer token to the skills.sh API endpoints Confirm that your rate-limiting logic accounts for the limit of 600 requests per minute.
  4. Review the specific JSON schema for each endpoint to handle variations in audit data coverage Different skill types may expose varying levels of historical auditing depth.

Source: Vercel Changelog

This page summarizes the original source. Check the source for full details.

Related