Best of REST APIFebruary 2025

  1. 1
    Article
    Avatar of planetpythonPlanet Python·1y

    Modern REST API Tutorial in Python

    Learn how to create reliable and maintainable production REST APIs in Python with this practical tutorial. The guide emphasizes building interfaces that are easy to use and ensuring long-term system maintainability.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·1y

    How to Work with OpenAPI in Go

    OpenAPI is a key standard for defining well-structured APIs in a language-agnostic manner. This guide explains how to architect, implement, and consume APIs using OpenAPI with Go. Covering everything from API design, schema components, and endpoint definitions, to generating server code and API documentation, this guide offers practical examples and tools for effective API management.

  3. 3
    Video
    Avatar of codeheimcodeHeim·1y

    #78 Golang - REST API Calls with Resty

    The post dives into using the Resty package in Golang for making REST API calls more efficiently. By comparing Resty to Go's net HTTP package, it highlights Resty's fluent API, handling of retries and timeouts, and automatic JSON marshalling/unmarshalling. The post includes a demonstration of building a CRUD API with Go using Resty, showcasing code snippets for creating, reading, updating, and deleting tasks in a task management API.