User-related API environment
Production user-related API docs
These pages describe the Production user-related API stack.
Use production OAuth credentials, production API base URLs, and production app URLs when following this documentation.
Need to test before going live? Switch to the Pre-live docs using the environment switcher above.
Search and retrieve tags
Search for tags by query string. Returns paginated results matching the search term. Useful for tag autocomplete and discovery features.
Query Parameters
query string
Search term
limit number
Number of results to return
page number
Page number
Responses
- 200
Tags matching search query with pagination
application/json
Schema
Example (from schema)
Example
Schema
- Array [
- ]
id number required
name string
createdAt date-time required
updatedAt date-time required
rank number
Default value: 0
languageId number
languageName string
postsCount number
commentsCount number
[
{
"id": 0,
"name": "string",
"createdAt": "2026-06-14T08:29:41.855Z",
"updatedAt": "2026-06-14T08:29:41.855Z",
"rank": 0,
"languageId": 0,
"languageName": "string",
"postsCount": 0,
"commentsCount": 0
}
]
[
{
"id": 1,
"name": "string",
"createdAt": "2026-04-02T00:00:00.000Z",
"updatedAt": "2026-04-02T00:00:00.000Z",
"rank": 0,
"languageId": 1,
"languageName": "string",
"postsCount": 1,
"commentsCount": 1
}
]
Loading...