GET /notemaps/:notemap_id/tags
Description | Get tags used in the notes in the notemap. This endpoint returns a subset of tags (not all tags are returned). |
Method & URL | GET https://api.findery.com/v2/notemaps/:notemap_id/tags |
Scope | 'read' for public-only content or 'readall' for all content |
Example Request |
curl https://api.findery.com/v2/notemaps/42950756712/tags |
Example Response |
{ "data": [ { "id": 33771, "link": "https://findery.com/tags/london_town", "name": "london_town", "notes": { "meta": { "count": 1, "nextUrl": "/v2/tags/london_town/notes" } } } ], "meta": { "count": 1, "nextUrl": null } } |