GET /v1/nomis/:id
The GET /v1/nomis/:id endpoint allows you to get the details of a specific Nomi associated with your account.
- HTTP Method
GET- URL
https://api.nomi.ai/v1/nomis/:id- URL Parameters
{
id: UUID;
}- Response Body Format
{
uuid: UUID;
gender: "Male" | "Female" | "Non Binary";
name: string;
created: ISODateString;
relationshipType: "Mentor" | "Friend" | "Romantic";
}- Error Response Types
Type Description NomiNotFoundThe specified Nomi was not found. It may not exist or may not be associated with this account. InvalidRouteParamsThe idparameter is not a valid UUID.