GET
/
rvc-models
/
uploaded
/
{id}
JavaScript
import Weights from '@weights-ai/sdk';

const client = new Weights({
  bearerToken: 'My Bearer Token',
});

const response = await client.rvcModels.retrieveUploaded('id');

console.log(response.id);
{
  "id": "model_123456789",
  "title": "John Doe Voice Model",
  "createdAt": "2024-01-15T10:30:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/json

Returns the details of the specified uploaded RVC model.

The response is of type object.