🌐
HackerRank
hackerrank.com › skills-verification › rest_api_intermediate
Rest API Intermediate Certificate
Data structures are fundamental to software design, and the certification rigorously tests candidates' understanding of arrays, linked lists, stacks, queues, trees, and graphs. Proficiency in MySQL, a critical aspect of database management, is evaluated through database design, SQL queries, normalization, and optimization techniques. Additionally, expertise in REST APIs, vital for modern web applications, is assessed in terms of RESTful principles, HTTP methods, authentication, and API design best practices.
🌐
HackerRank
hackerrank.com › skills-directory › rest_api_intermediate
REST API (Intermediate) | Skills Directory | HackerRank
REST API · Intermediate · Get Certificate · A RESTful API makes it possible for remote execution of an application's capabilities by supporting standard HTTP methods, error handling, and other RESTful mechanisms.
Discussions

HackerRank Solving rest APIs with Algos
A message I wrote to someone who came across this post asking for help. I hope this is useful for anyone else who comes across this: I am so sorry I was not able to reply in a timely manner. I am hardly on here. If this is still relevant to you, I would recommend studying for and getting this certificate. It's pretty easy and entails that you know how to consume an API and parse it and use its data. There are free intermediate and advanced certificates from Hackerrank. It doesn't really mean anything as far as the industry is concerned but preparing for it will help prepare you for future REST API Hackerranks and it's a nice little filler certificate to put on LinkedIn. https://www.hackerrank.com/skills-directory/rest_api_intermediate This is a video I used to help prepare. https://newsapi.org/ In general, I'd recommend finding an open API and play around with it using your language of choice. Off the top of my head, https://newsapi.org/ is a free one you can use. I hope this helps. More on reddit.com
🌐 r/csMajors
2
3
March 9, 2022
Practice REST API for an interview test
I think the best way for it is creating an API with REST architecture. More on reddit.com
🌐 r/learnprogramming
3
4
October 16, 2024
What Library to use for HackerRank Rest API Skills Challenge?
Update (in case anyone else has the question): environment details and list of dependencies on the class path. More on reddit.com
🌐 r/cscareerquestions
3
3
October 21, 2020
Stripe hackerrank API?
This is not what you want to hear - but if you need to learn a new library anyway, you’ll save much more time just figuring out how to do it with Python. The requests library makes it way simpler than anything Java (even Springboot). More on reddit.com
🌐 r/cscareerquestions
2
1
May 17, 2024
🌐
HackerRank
hackerrank.com › skills-verification › rest_api_intermediate › md1hiktjtk
Rest API (Intermediate) Skills Certification Test
Certification Test · Rest API (Intermediate) Verified · 90 min · Rest API · 1Review Profile · 2Certification Test ·
🌐
GitHub
github.com › saro-mano › Hackerrank-Rest-API
GitHub - saro-mano/Hackerrank-Rest-API: Solution for Hackerrank REST API Certification · GitHub
Python solution for Hackerrank REST API Certification (Intermediate)
Starred by 14 users
Forked by 9 users
Languages   Python
🌐
Reddit
reddit.com › r/csmajors › hackerrank solving rest apis with algos
r/csMajors on Reddit: HackerRank Solving rest APIs with Algos
March 9, 2022 -

Hey ya'll,

I just received an OA for an internship and I will be tested on the following.

  • Coding - You can use whichever programming language you'd like!

  • Databases - You'll use database queries and SQL for this one. 

  • Rest API's - You'll be solving Rest API's using algos!

I more or less understand what's expected of me from the coding and database section. I'm not sure what to expect from the Rest API section. When I go to the HackerRank website I don't see any practice tests or resources for this topic. This is something I have minimal experience with and I'm not sure how to practice. Any resources or insights would be greatly appreciated. Thank you!

🌐
GitHub
github.com › devreena03 › hackerrank-restapi-java
GitHub - devreena03/hackerrank-restapi-java: Hackerrank REST API certification problem solved in java · GitHub
Hackerrank REST API certification problem solved in java - devreena03/hackerrank-restapi-java
Starred by 19 users
Forked by 12 users
Languages   Java
Find elsewhere
🌐
GitHub
github.com › sumantopal07 › Rest-API-Intermediate-Hackerrank-Test
GitHub - sumantopal07/Rest-API-Intermediate-Hackerrank-Test · GitHub
const fetch = require("node-fetch"); let goals=[]; for(let i=0;i<=10;i++) goals.push(i); let ans=0; async function getDrawnMatches(year) { await Promise.all( goals.map(async (goal) => { const respone = await fetch(`https://jsonmock.hackerrank.com/api/football_matches?year=${year}&team1goals=`+goal+`&team2goals=`+goal); const data = await respone.json(); ans+=data.total; console.log(ans,data.total,goal); }) ); return ans; } getDrawnMatches (2011).then((answer) => console.log(answer));
Starred by 36 users
Forked by 8 users
🌐
GitHub
github.com › TarasAntoniuk › hackerrank-prep-rest-api
GitHub - TarasAntoniuk/hackerrank-prep-rest-api: HackerRank problem solving for REST API certification · GitHub
This repository contains solutions to multiple tasks from the HackerRank REST API Certification (Intermediate Level).
Author   TarasAntoniuk
🌐
Gitbook
dailyjournal.gitbook.io › solutions › hackerrank-solutions › certify › rest-api-intermediate
Rest API (Intermediate) | HackerRank | Solutions
In this challenge, the REST API contains information about football matches. The provided API allows querying matches by teams and year. The task is to get the number of matches for a given year that ended in a draw. A match is drawn when both teams scored the same number of goals. To access a collection of matches played in a given year, perform an HTTP GET request to https://jsonmock.hackerrank...
🌐
Hackerrank
help.hackerrank.com › articles › 2563639100-introduction-to-certification
Introduction to Certification | Hackerrank Community Knowledge Base
Role-based certifications evaluate multiple related skills to assess readiness for a specific job role. HackerRank offers the following role-based certifications and evaluates the respective skills for each role: Software engineer: Problem-solving, SQL, and REST API
🌐
GitHub
github.com › Kungfoowiz › Hacker-Rank-Certifications
GitHub - Kungfoowiz/Hacker-Rank-Certifications: My solutions to the HackerRank REST API Intermediate Certification using C# .NET HttpClient. · GitHub
My solutions to the HackerRank REST API Intermediate Certification using C# .NET HttpClient. - Kungfoowiz/Hacker-Rank-Certifications
Author   Kungfoowiz
🌐
HackerRank
hackerrank.com › skills-verification › software_engineer
HackerRank
Data structures are fundamental to software design, and the certification rigorously tests candidates' understanding of arrays, linked lists, stacks, queues, trees, and graphs. Proficiency in MySQL, a critical aspect of database management, is evaluated through database design, SQL queries, normalization, and optimization techniques. Additionally, expertise in REST APIs, vital for modern web applications, is assessed in terms of RESTful principles, HTTP methods, authentication, and API design best practices.
🌐
Scribd
scribd.com › document › 781361192 › HackerRank-Rest-api-intermediate-Certificate
HackerRank - Rest - Api - Intermediate Certificate | PDF
*HackerRank - Rest_api_intermediate Certificate - Free download as PDF File (.pdf) or view presentation slides online.
🌐
HackerRank
hackerrank.com › blog › rest-api-interview-questions-every-developer-should-know
REST API Interview Questions to Know - HackerRank Blog
August 31, 2023 - A look at 6 REST API interview questions every developer should know, with examples and insight into how to solve them.
🌐
HackerRank
hackerrank.com › api
Programming Problems and Competitions :: HackerRank
Join over 28 million developers in solving code challenges on HackerRank, one of the best ways to prepare for programming interviews.
🌐
YouTube
m.youtube.com › live › TEIgEPxfRG4
Hackerrank Certification REST APIs Certification (Football ...
Share your videos with friends, family, and the world
Published   May 16, 2023
🌐
GitHub
github.com › runitrupam › Hackerrank-Rest-API-Intermediate-Skills-Certification-Test
GitHub - runitrupam/Hackerrank-Rest-API-Intermediate-Skills-Certification-Test: Python solution of Hackerrank Rest API (Intermediate) Skills Certification Test
Python solution of Hackerrank Rest API (Intermediate) Skills Certification Test - runitrupam/Hackerrank-Rest-API-Intermediate-Skills-Certification-Test
Author   runitrupam
🌐
KodNest
kodnest.com › home › 5 hackerrank certifications that can boost your resume as a fresher
5 HackerRank Certifications That Can Boost Your Resume as a Fresher - KodNest
January 8, 2025 - The HackerRank Software Engineer Certification tests crucial skills like problem-solving, SQL, and REST APIs – key abilities for junior software and backend developers.