# `Hunter.Tag`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/tag.ex#L1)

Tag entity

## Fields

  * `id` - Database ID of the hashtag, useful for Admin API URLs
  * `name` - The hashtag, not including the preceding `#`
  * `url` - The URL of the hashtag
  * `history` - usage statistics for given days (last 7), a list of maps
    with `day`, `uses` and `accounts` keys
  * `following` - whether the current authorized user is following this tag
  * `featuring` - whether the current authorized user is featuring this tag
    on their profile

# `t`

```elixir
@type t() :: %Hunter.Tag{
  featuring: boolean() | nil,
  following: boolean() | nil,
  history: [map()] | nil,
  id: String.t() | nil,
  name: String.t(),
  url: String.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
