# User Profile Method: GET Endpoint: GET /users/profile Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `name` (string) The full name of the user as registered in the system. Example: "John Doe" - `available_balance` (number) The available balance of the user. Example: 90937.58 - `rate_search_limit` (integer) The maximum number of search queries allowed within a defined time frame. Example: 100 - `remaining_rate_search_limit` (integer) The number of search queries a user can still perform before hitting the limit. Example: 100 - `rate_search_limit_refresh_in_seconds` (integer) Time in seconds until the search rate limit is reset to its maximum value. Example: 100 - `requested_rate_create_limit` (integer) The maximum number of create rate requests a user can make within a set period. Example: 100 - `remaining_requested_rate_create_limit` (integer) The available quota of create rate requests before reaching the allocated limit. Example: 100 - `requested_rate_create_limit_refresh_in_seconds` (integer) Time in seconds until the create rate limit is replenished to its full capacity. Example: 100 ## Response 401 fields