added get clip route
This commit is contained in:
parent
74e7ebb5e3
commit
b77bfc71f1
@ -338,6 +338,12 @@ class SunoApi {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async getClip(clipId: string): Promise<object> {
|
||||||
|
await this.keepAlive(false);
|
||||||
|
const response = await this.client.get(`${SunoApi.BASE_URL}/api/clip/${clipId}`);
|
||||||
|
return response.data;
|
||||||
|
}
|
||||||
|
|
||||||
public async get_credits(): Promise<object> {
|
public async get_credits(): Promise<object> {
|
||||||
await this.keepAlive(false);
|
await this.keepAlive(false);
|
||||||
const response = await this.client.get(`${SunoApi.BASE_URL}/api/billing/info/`);
|
const response = await this.client.get(`${SunoApi.BASE_URL}/api/billing/info/`);
|
||||||
|
Loading…
Reference in New Issue
Block a user