Skip to main content
The Users API lets you retrieve the public profile of any creator on Hitorino. You can use this endpoint to display creator information alongside their streams or videos in your integration — showing an avatar, bio, and follower count without redirecting users to Hitorino’s website. This endpoint returns only publicly available information; private account details such as email addresses or billing information are never exposed.

Get User

Returns the public profile of the creator with the specified user ID.

Path Parameters

string
required
The unique user ID of the creator (e.g., usr_01HABC5678). You can obtain a creator’s id from the creator_id field on any stream or video object.

Request Examples

Response

Response Fields

string
Unique identifier for the user, prefixed with usr_.
string
The creator’s unique lowercase username on Hitorino. Used in the profile URL.
string
The creator’s public-facing display name. May differ from username and can contain mixed case and spaces.
string
Short biography written by the creator. May be null if the creator has not set a bio.
string
URL of the creator’s profile picture. Served from Hitorino’s CDN. Always present; falls back to a default avatar if the creator has not uploaded one.
string
URL of the creator’s profile banner image. null if no banner has been set.
string
Full URL to the creator’s public profile page on Hitorino.
integer
Total number of Hitorino users following this creator.
boolean
true if Hitorino has granted this creator a verified badge, indicating authenticity of a notable individual or brand.
array
Array of category slugs representing the content types this creator most frequently streams. May be empty.
Map of social platform names to their URLs, as configured by the creator. Possible keys include twitter, github, instagram, youtube, and website. Only keys the creator has filled in are present — absent platforms are not included in the object.
integer
Total number of streams the creator has ever started on Hitorino, including ended streams.
integer
Total number of on-demand videos published by the creator.
string
ISO 8601 timestamp of when the creator’s Hitorino account was created.

Usage Pattern: Enriching Stream Data

A common integration pattern is to fetch stream data and then enrich it with creator profile information. The creator_id on every stream and video object maps directly to the id parameter for this endpoint.
This endpoint returns public profile data only. You cannot update user profiles, retrieve email addresses, or access any private account information via the API.