This endpoint allows developers to retrieve user information via a GET request. It is designed for secure and efficient data fetching in API integrations.

🔧 Key Features

  • Language: English (as per path /en/xxx)
  • Method: GET
  • Path: /en/developers/api-user-get
  • Authentication: Requires valid API key in headers
  • Rate Limit: 100 requests per minute

📝 Request Parameters

Parameter Type Description
user_id string Unique identifier for the user (required)
fields string Comma-separated list of fields to return (optional)

📌 Example: GET /en/developers/api-user-get?user_id=12345&fields=name,email

🧾 Response Example

{
  "user": {
    "id": "12345",
    "name": "John Doe",
    "email": "john.doe@example.com",
    "created_at": "2023-01-15T10:00:00Z"
  }
}

📚 Related Resources

Documentation Center | API Guide | OAuth Setup

📷 Visuals

api_documentation
http_request_methods

⚠️ Security Notes

  • Always validate input parameters
  • Use HTTPS for encrypted communication
  • Monitor for unauthorized access attempts

Privacy Policy | Terms of Service