Skip to main content
Fetch your most recent uploads. Defaults to 30. Pass ?limit=N to control the count (max 1000).

Behavior

  • Returns uploads newest first.
  • Each upload includes code for the associated post when one exists.
  • isAlbum is true when that upload belongs to an album post.
  • URLs for private uploads are returned as signed URLs with a 24-hour expiry. After that, request the endpoint again for a fresh signed URL.

Examples

curl -X GET "https://api.snipp.gg/uploads?limit=100" \
  -H "api-key: YOUR_API_KEY"

Responses

{
  "uploads": [
    {
      "code": "AbCd1234",
      "isAlbum": true,
      "url": "https://i.snipp.gg/364836696149458944/16483ec5681c5fc2b5cc08dd49b7dbae",
      "size": 2487312,
      "size_formatted": "2.37 MB",
      "uploaded": "2026-03-27T11:42:18.000Z"
    }
  ]
}