users
Get User object
Get detailed information about a specific User.
GET
/
v0
/
users
/
{userId}
Copy
curl --request GET \
--url https://api.fungies.io/v0/users/{userId} \
--header 'x-fngs-public-key: <api-key>'
Copy
{
"status": "<string>",
"data": {
"user": {
"object": "user",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": null,
"email": null,
"details": null,
"internalId": null
}
}
}
Authorizations
Path Parameters
GET /v0/users/:userId Parameter
Response
200
application/json
GET /v0/users/:userId Positive response
The response is of type object
.
Copy
curl --request GET \
--url https://api.fungies.io/v0/users/{userId} \
--header 'x-fngs-public-key: <api-key>'
Copy
{
"status": "<string>",
"data": {
"user": {
"object": "user",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": null,
"email": null,
"details": null,
"internalId": null
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.