Skip to content
 
 

Latest commit

 

History

17 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Hi there, I'm Rimal 👋

Welcome to my GitHub profile!

🚀 About Me

  • 💻 Passionate about software development
  • 🌱 Always learning and growing
  • 🤝 Open to collaborating on interesting projects
  • 🔭 Exploring new technologies and building cool things

🛠️ Technologies & Tools

Python JavaScript Git GitHub VS Code

📊 GitHub Stats

GitHub Stats

🐛 Debugging & Problem Solving

  • 🔍 Enjoy diving deep into complex problems
  • 🛠️ Experienced with debugging tools and techniques
  • 📝 Writing clean, maintainable code

Quickstart for GitHub REST API

Learn how to get started with the GitHub REST API.

Introduction

This quickstart shows how to make a simple GitHub REST API request with GitHub CLI, curl, or JavaScript. For a more detailed guide, see Getting started with the REST API.

Using GitHub CLI

gh auth login
gh api /octocat --method GET

Using curl

curl -L \
  -H "Accept: application/vnd.github+json" \
  -H "X-GitHub-Api-Version: 2022-11-28" \
  https://api.github.com/octocat

Using JavaScript

const response = await fetch("https://api.github.com/octocat", {
  headers: {
    Accept: "application/vnd.github+json",
    "X-GitHub-Api-Version": "2022-11-28",
  },
});

const data = await response.text();
console.log(data);

Next steps

For a more detailed guide, see Getting started with the REST API.

📫 Get in Touch

Feel free to reach out or explore my repositories!

GitHub followers

About

Config files for my GitHub profile.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors