The Chattz API allows developers to interact with the Chattz platform via code. Whether you want to fetch user information or integrate Chattz features into your app.
Base URL
https://chattz.net/api/Authentication
For now, the Chattz API doesn’t require any authentication. However, keep in mind that certain actions may require user login or permissions. For now, all endpoints are open to the public.
Making Requests
The API uses standard GET requests. Here’s a general structure for making requests:
- GET request: To fetch information.
- POST request: For creating or modifying resources
Example Request (Get User Info)
To fetch data about a specific user, make a GET request to:
https://chattz.net/api/v1/users?user_id=USER_IDThe response will be in JSON format, containing the requested data like the user’s username, name, bio, profile picture, and banner
