Discover/Vercel API
live

Vercel APIthe-talent-os.vercel.app

Analyze GitHub profiles, parse LeetCode stats, extract job description fields, and generate AI career roadmaps with 4 endpoints from The Talent OS API.

This API takes change requests — .
Endpoint health
verified 7h ago
analyze_github
analyze_leetcode
2/2 passing latest checkself-healing
Endpoints
4
Updated
23d ago

What is the Vercel API?

The Talent OS API provides 4 endpoints that turn developer activity and job postings into structured career intelligence. The analyze_github endpoint scores a GitHub user across five skill categories — frontend, backend, AI, DevOps, and open-source — alongside a full language breakdown by repository count. Companion endpoints cover LeetCode problem-solving statistics, job description parsing, and AI-generated learning roadmaps.

This call costs1 credit / call— charged only on success
Try it
GitHub username or organization name to analyze.
api.parse.bot/scraper/9a7577d3-1ef4-4a3b-90d1-6fa6f7b6f51f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9a7577d3-1ef4-4a3b-90d1-6fa6f7b6f51f/analyze_github?username=torvalds' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace the-talent-os-vercel-app-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: TalentOS Roadmap Finder SDK — bounded, re-runnable; every call capped."""
from parse_apis.the_talent_os_vercel_app_api import TalentOS, ParseError

client = TalentOS()

# Analyze a GitHub profile to understand skills and scores
github = client.github_profiles.get(username="torvalds")
print(github.username, github.overall_score, github.backend_score)
for lang in github.languages[:3]:
    print(lang.language, lang.count, lang.percentage)

# Analyze a LeetCode profile for problem-solving stats
leetcode = client.leetcode_profiles.get(username="neal_wu")
print(leetcode.username, leetcode.total_solved, leetcode.acceptance_rate)

# Generate a personalized career roadmap
roadmap = client.roadmaps.generate(message="Create a 30-day roadmap for learning React.js")
print(roadmap.response[:200])

# Parse a job description to identify required skills
jd = client.job_descriptions.parse(text="Senior Backend Engineer - 5+ years Python, Django, AWS, PostgreSQL")
print(jd.title, jd.skills, jd.technologies)

# Typed error handling
try:
    profile = client.github_profiles.get(username="nonexistent-user-xyz-12345")
    print(profile.username)
except ParseError as e:
    print(f"error: {e.code}")

print("exercised: github_profiles.get, leetcode_profiles.get, roadmaps.generate, job_descriptions.parse")
All endpoints · 4 totalmissing one? ·

Analyze a GitHub user profile to produce skill category scores (frontend, backend, AI, DevOps, open-source) and a language breakdown by repository count. One round-trip per call; no pagination.

Input
ParamTypeDescription
usernamerequiredstringGitHub username or organization name to analyze.
Response
{
  "type": "object",
  "fields": {
    "ai_score": "number",
    "username": "string",
    "languages": "array of language objects with language, count, percentage",
    "forks_count": "integer",
    "devops_score": "number",
    "backend_score": "number",
    "overall_score": "number",
    "frontend_score": "number",
    "stargazers_count": "integer",
    "open_source_score": "number",
    "total_repositories": "integer"
  },
  "sample": {
    "ai_score": 76,
    "username": "torvalds",
    "languages": [
      {
        "count": 10,
        "language": "C",
        "percentage": 83
      }
    ],
    "forks_count": 64532,
    "devops_score": 79,
    "backend_score": 83,
    "overall_score": 83,
    "frontend_score": 81,
    "stargazers_count": 252315,
    "open_source_score": 93.6,
    "total_repositories": 12
  }
}

About the Vercel API

GitHub and LeetCode Profile Analysis

The analyze_github endpoint accepts a username and returns numeric scores for frontend_score, backend_score, ai_score, devops_score, and open_source_score, plus an overall_score. The languages array lists each programming language with its count and percentage share of repositories, while stargazers_count and forks_count give a sense of public impact. The analyze_leetcode endpoint takes a LeetCode username and returns solved counts broken down by easy_solved, medium_solved, and hard_solved, plus total_solved, contest_rating, acceptance_rate, and global ranking. Both endpoints complete in a single round-trip with no pagination.

Job Description Parsing

The parse_job_description endpoint accepts a raw job posting string in the text field and extracts: title, skills (required skill list), technologies, experience, education, location, salary, industry, employment_type, and nice_to_have. This makes it straightforward to compare a developer's GitHub skill scores against the skills and technologies a specific role demands.

AI Career Roadmap Generation

The generate_roadmap endpoint accepts a message describing a career goal or skill gap and returns a response string containing a structured roadmap with phases, daily plans, and recommendations. An optional history parameter accepts a JSON-encoded array of prior conversation turns, enabling multi-turn dialogue so follow-up questions refine or extend an earlier roadmap without losing context.

Reliability & maintenanceVerified

The Vercel API is a managed, monitored endpoint for the-talent-os.vercel.app — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when the-talent-os.vercel.app changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official the-talent-os.vercel.app API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Score candidates' GitHub profiles against job description technologies and skills fields to filter applicants.
  • Display a developer's frontend_score and backend_score side-by-side with a target job's required skills.
  • Build a dashboard that tracks contest_rating and hard_solved growth on LeetCode over time.
  • Automatically parse inbound job postings to extract salary, location, and experience into a structured database.
  • Generate a 30-day learning roadmap via generate_roadmap based on the gap between a user's GitHub scores and a parsed job's required technologies.
  • Identify the dominant languages in a GitHub profile to recommend relevant open-source projects to contribute to.
  • Use multi-turn history context in generate_roadmap to iteratively refine a roadmap as a user asks follow-up questions.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does The Talent OS have an official developer API?+
The Talent OS (the-talent-os.vercel.app) does not publish a documented public developer API. This Parse API exposes the platform's profile analysis, job parsing, and roadmap generation capabilities as structured endpoints.
What does `analyze_github` return beyond skill scores?+
In addition to the five skill category scores and overall_score, the response includes a languages array where each entry carries the language name, the number of repositories using it, and its percentage share. It also returns stargazers_count and forks_count as aggregate signals across the user's public repositories.
Does `analyze_leetcode` return per-problem or contest history data?+
The endpoint returns aggregate statistics: total_solved, easy_solved, medium_solved, hard_solved, contest_rating, acceptance_rate, and ranking. Per-problem submission history and individual contest result breakdowns are not currently exposed. You can fork this API on Parse and revise it to add endpoints covering that detail.
Can `parse_job_description` handle multiple job postings in a single call?+
The endpoint processes one job description text per call and returns a single set of extracted fields. Batch parsing of multiple postings in one request is not currently supported. You can fork this API on Parse and revise it to add a batch endpoint that accepts an array of job description strings.
Does `generate_roadmap` support saving or retrieving past roadmaps?+
The endpoint generates a roadmap from the current message and optional history parameter, but it does not persist or retrieve previously generated roadmaps by ID. Conversation continuity is managed by passing prior turns in the history field on each new request. Persistent roadmap storage is not currently part of the API. You can fork it on Parse and revise to add storage and retrieval endpoints.
Page content last updated . Spec covers 4 endpoints from the-talent-os.vercel.app.
Related APIs in Developer ToolsSee all →
roadmap.sh API
Discover and access structured learning roadmaps, detailed guides, interview questions, and community projects to build your development skills across different technologies and career paths. Search through curated learning content, explore topic breakdowns, and find project ideas tailored to your learning goals.
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.
offerzen.com API
Browse and retrieve tech job listings from OfferZen's developer marketplace. Access structured job data including required skills, company details, location, and workplace policy, with support for keyword filtering and pagination.
metacareers.com API
Search and browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.
topstartups.io API
Access startup profiles, funding data, job listings, and salary benchmarks from TopStartups.io. Filter by industry, location, funding stage, company size, and more to explore the startup landscape at scale.
welcometothejungle.com API
Search and discover job postings and company information from Welcome to the Jungle, including detailed job listings, company profiles with employee statistics and social links, and the ability to browse all available positions. Find the perfect role by searching jobs and companies, then access comprehensive details about positions and organizations in one place.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
levels.fyi API
Access real compensation data, benefits packages, and salary trends across tech companies and job levels. Retrieve internship pay, H-1B visa salary records, company profiles, and detailed breakdowns by role and level.