# Get users by tag
You can return all users including a specific tag.
GET
/tags/:id/users/
Attributes | Type | Required | Description |
---|---|---|---|
id | integer | yes | A unique identifier for the tag which is given by User.com automatically. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/tags/:id/users/"
# Response
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"email": "example@email.com",
"last_ip": null,
"lists": [],
"google_url": null,
"created_at": "2017-05-29T10:08:59.526286Z",
"first_seen": null,
"last_seen": null,
"attributes": [
{
"name": "Awesome attribute",
"id": 2092,
"name_std": "awesome_attribute",
"value": "Value for the attribute"
}
],
"region": null,
"last_contacted": null,
"notifications": true,
"page_views": 0,
"country": null,
"gender": "unknown",
"timezone": null,
"os_type": null,
"unsubscribed": true,
"gravatar_url": null,
"key": "rQ8mdQ8W6I5t",
"id": 18260675,
"phone_number": null,
"chat_id": "Chat ID is deprecated and will be removed in future",
"facebook_url": null,
"city": null,
"status": "visitor",
"browser_language": null,
"twitter_url": null,
"linkedin_url": null,
"browser": null,
"score": 0,
"name": "John Doe",
"tags": [
{
"name": "My tag",
"id": 31,
}
],
"resolution": null,
"updated_at": "2017-05-29T10:08:59.526309Z"
},
"companies": [
{
"id": 14,
"name": "Company name",
"member_since": "2018-06-14T08:49:56.515083Z"
}
],
{
"email": "example@email.org",
"last_ip": null,
"lists": [],
"google_url": null,
"created_at": "2017-06-13T12:22:38.748373Z",
"first_seen": null,
"last_seen": null,
"attributes": [],
"region": null,
"last_contacted": null,
"notifications": true,
"page_views": 0,
"country": null,
"gender": "unknown",
"timezone": null,
"os_type": null,
"unsubscribed": false,
"gravatar_url": null,
"key": "xSoYQG00fg9z",
"id": 20901703,
"phone_number": null,
"chat_id": "Chat ID is deprecated and will be removed in future",
"facebook_url": null,
"city": null,
"status": "visitor",
"browser_language": null,
"twitter_url": null,
"linkedin_url": null,
"browser": null,
"score": 0,
"name": "Jane Doe",
"tags": [
{
"name": "My tag",
"id": 31,
}
],
"resolution": null,
"updated_at": "2017-06-13T12:51:30.924647Z"
}
]
}