About 50 results
Open links in new tab
  1. What is REST?: REST API Tutorial

    Apr 1, 2025 · These principles must be satisfied if a service interface is to be referred to as RESTful. A Web API (or Web Service) conforming to the REST architectural style is called a REST API (or …

  2. HTTP Methods - REST API Tutorial

    Nov 4, 2023 · REST guidelines suggest using a specific HTTP method on a particular type of call made to the server i.e. GET, POST, PUT or DELETE.

  3. How to Design a REST API - Step by Step Guide

    Nov 6, 2023 · Follow these steps to design a REST API - Identify the Object Model, Create Resource URIs, Determine Representations, and Assign HTTP Methods.

  4. REST API Best Practices

    Oct 22, 2024 · Nordic’s article on RESTful API pagination is a good resource for exploring the topic further. 11. API Security is Not an Afterthought The security of an API is a non-negotiable aspect. We …

  5. REST Architectural Constraints - REST API Tutorial

    Nov 19, 2024 · REST defines 6 architectural constraints which make any web service – a truly RESTful API i.e. Uniform interface, Client–server, Stateless, Cacheable, Layered system, Code on demand …

  6. REST API URI Naming Conventions and Best Practices

    Nov 4, 2023 · RESTful URI should refer to a resource that is a thing (noun) instead of referring to an action (verb) because nouns have properties that verbs do not have – similarly, resources have …

  7. REST API Response Pagination, Sorting and Filtering

    As a best practice, REST APIs SHOULD support server-side pagination from day one, even for all collections, as adding pagination is a breaking change. Learn how to do it.

  8. How to Build HATEOAS Driven REST APIs - REST API Tutorial

    Nov 4, 2023 · HATEOAS (Hypermedia as the Engine of Application State) is a constraint of the REST application architecture which uses hypertext in API response.

  9. Rate Limiting a REST API

    Rate limiting is a control mechanism that dictates how often a user can call your API within a certain time frame. It prevents abuse and ensures fair resource usage among multiple clients.

  10. REST API Versioning: How to Version a REST API?

    Dec 25, 2024 · REST API versioning helps to iterate faster when the required, breaking or non-breaking, changes are identified. Learn to devise a strategy for API versioning.