Skip to main content
Search for tags by name.

Request

curl "https://api.fucksornot.com/api/tags/search?q=tech&limit=10"

Parameters

ParameterTypeDefaultDescription
qstringRequiredSearch query
limitinteger10Max results (max 20)

Response

{
  "tags": [
    {
      "id": "tag-uuid-1",
      "name": "tech",
      "slug": "tech"
    },
    {
      "id": "tag-uuid-2",
      "name": "technology",
      "slug": "technology"
    },
    {
      "id": "tag-uuid-3",
      "name": "techno",
      "slug": "techno"
    }
  ]
}

Use Cases

  • Autocomplete for tag input
  • Tag suggestions while typing
  • Finding existing tags before creating new ones

Notes

  • Search is case-insensitive
  • Matches tags starting with the query
  • No authentication required