Skip to main content
Get all tags with upload counts.

Request

curl "https://api.fucksornot.com/api/tags?page=1&limit=20" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

Parameters

ParameterTypeDefaultDescription
pageinteger1Page number
limitinteger20Items per page

Response

{
  "tags": [
    {
      "id": "tag-uuid-1",
      "name": "gadget",
      "slug": "gadget",
      "upload_count": 150
    },
    {
      "id": "tag-uuid-2",
      "name": "tech",
      "slug": "tech",
      "upload_count": 120
    }
  ],
  "page": 1,
  "limit": 20
}

Tag Fields

FieldTypeDescription
idUUIDTag identifier
namestringDisplay name
slugstringURL-friendly version
upload_countintegerNumber of uploads with this tag

Use Cases

  • Display tag cloud
  • Show popular tags
  • Build tag navigation