← Back to Projects
🟣 csharp-api 2024

Bookmarks API

A bookmarks manager API in .NET 8 Minimal API. CRUD for bookmarks, search by title or URL, Swagger UI.

Preview

api-panel — rest
Endpoints
GET/api/bookmarks
Request
{
  "tag": "programming",
  "limit": 20
}
Response200 OK
{
  "items": [
    {
      "id": 1,
      "url": "https://docs.microsoft.com",
      "title": "MS Docs",
      "tags": [
        "programming",
        "dotnet"
      ]
    }
  ]
}

Tech Stack

  • C#
  • .NET
  • Swashbuckle

Description

A bookmarks manager API in .NET 8 Minimal API. CRUD for bookmarks, search by title or URL, Swagger UI.