{
  "data": [
    {
      "id": 1,
      "userId": 1,
      "title": "Getting Started with REST APIs",
      "body": "REST APIs are the backbone of modern web applications.",
      "tags": [
        "api",
        "rest",
        "beginner"
      ],
      "createdAt": "2024-01-10T08:00:00Z"
    },
    {
      "id": 2,
      "userId": 1,
      "title": "Why JSON is the Universal Language of APIs",
      "body": "JSON has become the de facto standard for API data exchange.",
      "tags": [
        "json",
        "api",
        "data"
      ],
      "createdAt": "2024-01-12T09:00:00Z"
    },
    {
      "id": 5,
      "userId": 3,
      "title": "API Authentication Explained Simply",
      "body": "Authentication proves who you are.",
      "tags": [
        "auth",
        "security",
        "api"
      ],
      "createdAt": "2024-01-16T12:00:00Z"
    },
    {
      "id": 7,
      "userId": 4,
      "title": "Query Parameters vs Request Body",
      "body": "Should your data go in the URL or the request body?",
      "tags": [
        "api",
        "best-practices",
        "http"
      ],
      "createdAt": "2024-01-18T14:00:00Z"
    },
    {
      "id": 11,
      "userId": 7,
      "title": "Pagination: Getting Large API Results in Chunks",
      "body": "No API returns a million records at once.",
      "tags": [
        "pagination",
        "api",
        "performance"
      ],
      "createdAt": "2024-01-22T10:30:00Z"
    }
  ],
  "meta": {
    "total": 5,
    "limit": 10,
    "offset": 0,
    "count": 5
  }
}