Skip to main content
Get public uploads from a specific user.

Request

curl https://api.fucksornot.com/api/user/johndoe/uploads

Parameters

ParameterTypeDescription
usernamestringUsername to look up

Response

{
  "uploads": [
    {
      "id": "upload-uuid-1",
      "user_id": "user-uuid",
      "filename": "image1.webp",
      "description": "First upload",
      "upload_type": "image",
      "upvotes": 42,
      "downvote_count": 5,
      "created_at": "2025-01-24T12:00:00Z",
      "tags": [...]
    },
    {
      "id": "upload-uuid-2",
      "user_id": "user-uuid",
      "filename": "image2.webp",
      "description": "Second upload",
      "upload_type": "image",
      "upvotes": 28,
      "downvote_count": 3,
      "created_at": "2025-01-23T12:00:00Z",
      "tags": [...]
    }
  ],
  "username": "johndoe",
  "uploadCount": 42
}

Notes

  • Only public uploads are returned
  • Private uploads are excluded even if they belong to the user
  • No authentication required
  • Returns empty array if user has no public uploads

Use Cases

  • User profile pages
  • Viewing a user’s contributions
  • Discovering content by creator

Errors

StatusDescription
404User not found