Knowledge Base: Data API: Tags

Tags

Please make sure you read the introduction to the data API first.

Note: Fetching and setting tags of projects and releases works through their respective URIs.

Attributes

  • id (Integer)
  • permalink (String)
  • name (String)
  • taggables_count (Integer)

Request Root

http://freshmeat.net/tags

List all tags

GET /tags/all.json

Response:

[
  {
    "tag": {
      "name": "Archaeology",
      "permalink": "archaeology",
      "taggings_count": 1,
      "id": 5221
    }
  }
]

Show tag and all projects tagged with it

GET /tags/linux.json

Response

{
  "tag": {
    "name": "Linux",
    "permalink": "linux",
    "taggings_count": 17873,
    "id": 66
  },
  "projects": [
    {
      "name": "Achievo",
      "permalink": "achievo",
      # ...
    }
  ]
}