Skip to main content
GET
/
users
/
search
/
tags
Search for user IDs by tags
curl --request GET \
  --url https://our-secret-api-url.com/users/search/tags
[
  123
]
This API filters the users that has tags overlapping the passed tags.
This API is useful for fetching the userIds for feed of tagged accounts.
Pass userId to filter users that the current user has not followed.
An example of tag is ["berita"] to get the news-specific tagged accounts.
Pass the found userIds into the Posts API:

Posts API

Get list of posts for feed

Query Parameters

tags
string
required

JSON-encoded array of tags

userId
string

userId of the current user

Response

Successful response with user IDs

User ID