Search
Search tags
Search tags by name. Part of the global search API that searches across multiple entity types.
GET /v1/search/tags
Parameters
Query parameters
searchQuery
string
take
integer
cursor
string
Responses
200 — Successful response
Content-Type: application/json
error
boolean required
data
array<object> required
data[].id
string (uuid) required
data[].user_id
string
data[].name
string
data[]._count
object
data[]._count.tags_contacts
integer
Example
{
"error": false,
"data": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
]
}
400
No response body.
401
No response body.
403
No response body.
404
No response body.
429
No response body.
500
No response body.
Code samples
curl https://api.prod.getdex.com/v1/search/tags \
--header 'Authorization: Bearer YOUR_API_KEY'
fetch('https://api.prod.getdex.com/v1/search/tags', {
headers: {
Authorization: 'Bearer YOUR_API_KEY'
}
})
requests.get(
"https://api.prod.getdex.com/v1/search/tags",
headers={
"Authorization": "Bearer YOUR_API_KEY"
}
)

