Users
List all users
GET
/
users
curl --request GET \
--url https://api.matia.io/v1/users \
--header 'x-api-key: <api-key>'
{
"code": "<string>",
"message": "<string>",
"data": {
"items": [
{
"id": "<string>",
"email": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}
}
Authorizations
Response
200
application/json
Successfully listed all users
The response is of type object
.
curl --request GET \
--url https://api.matia.io/v1/users \
--header 'x-api-key: <api-key>'
{
"code": "<string>",
"message": "<string>",
"data": {
"items": [
{
"id": "<string>",
"email": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.