# Search Users (beta) **POST /v1/auth/users/search** Search users within an App. ## HTTP Request `POST /v1/auth/users/search` ## Returns A successful response returns a list of `User` objects in `users` property and also pagination related properties. ## Servers - Production: https://api.moonkey.fun (Production) ## Authentication methods - Authorization ## Parameters ### Body: application/json (object) - **limit** (number) Number of objects to return per response, must be between 10 to 100, defaults to 50. - **starting_after** (string) A cursor for use in pagination. starting_after is an object ID that defines your place in the search result when there are more results to fit into a single response. For instance, if you make a search request with limit of 100 objects, ending with user_123, your subsequent call can include `starting_after: user_123` in order to fetch the next page of the search result. - **filters** (object) Filters object to apply to the search. ## Responses ### 200 #### Body: application/json (object) - **users** (array[object]) - **total_count** (number) - **has_more** (boolean) [Powered by Bump.sh](https://bump.sh)