HTTP 404 https://princemuel.netlify.app/problems/not-found

The requested resource could not be found on this server.

Standard Fields

Extension Fields

resource_type

The type of resource that was not found (e.g., “user”, “post”, “image”).

resource_id

The identifier of the resource that was not found.

Examples

User Not Found

{
"type": "https://princemuel.netlify.app/problems/not-found",
"title": "Resource Not Found",
"status": 404,
"detail": "No user exists with ID 999",
"instance": "/api/users/999",
"resource_type": "user",
"resource_id": "999"
}

Nested Resource Not Found

{
"type": "https://princemuel.netlify.app/problems/not-found",
"title": "Resource Not Found",
"status": 404,
"detail": "Post 123 does not have a comment with ID 456",
"instance": "/api/posts/123/comments/456",
"resource_type": "comment",
"resource_id": "456",
"parent": { "type": "post", "id": "123" }
}

When This Problem Occurs

How to Fix

  1. Verify the resource identifier is correct
  2. Check if resource was recently deleted
  3. Confirm you have proper access permissions
  4. Try searching for the resource by other means
  5. Check if resource moved to different endpoint

This problem type conforms to RFC 9457 - Problem Details for HTTP APIs