Skip to main content

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
TypeDescription
NomiNotFoundThe specified Nomi was not found. It may not exist or may not be associated with this account.
InvalidRouteParamsThe id parameter is not a valid UUID.