added get clip route
This commit is contained in:
parent
74e7ebb5e3
commit
b77bfc71f1
@ -51,4 +51,4 @@ export async function OPTIONS(request: Request) {
|
||||
status: 200,
|
||||
headers: corsHeaders
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -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> {
|
||||
await this.keepAlive(false);
|
||||
const response = await this.client.get(`${SunoApi.BASE_URL}/api/billing/info/`);
|
||||
|
Loading…
Reference in New Issue
Block a user