Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📄 Random Resume API

A simple Node.js + Vercel Serverless Function that returns a random resume in JSON format on every request. Perfect for developers building frontend portfolio pages, mock interview tools, or resume template generators. ⚡


🚀 Live API


👉 Click to Try It


Each request returns one random resume like this:

{
  "id": "ivan-ivanov",
  "name": "Ivan Ivanov",
  "title": "Full Stack Developer",
  "location": "Kyiv, Ukraine",
  ...
}


🔧 How It Works

This API randomly picks one resume from a pre-defined list of 15+ detailed candidate profiles and returns it as a response.

✅ CORS-enabled ✅ GET-only ✅ Hosted via Vercel



🛠 Installation & Run Locally

Clone the repo:

git clone https://github.com/Antot-12/Portfolio_API_Vercel.git
cd Portfolio_API_Vercel

Install Vercel CLI if needed:

npm install -g vercel

Run locally:

vercel dev

Deploy it to Vercel:

vercel --prod


🧠 Use Case Ideas

  • Frontend About Me sections
  • Dynamic resume preview widgets
  • Portfolio template generators
  • Developer CV randomizer
  • AI resume reviewers


📎 Example Use in React

useEffect(() => {
  fetch('https://your-vercel-url/api/resume')
    .then(res => res.json())
    .then(data => setResume(data));
}, []);


🤝 Credits

Built with ❤️ using:

  • Node.js
  • Vercel Serverless Functions
  • Pure JSON

Created by Antot_12

About

A Node.js serverless API that returns randomly selected resume profiles as JSON for portfolio websites, resume viewers, template generators, and development testing.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages