//native
type Shutterstock = {
token: string;
};
/**
* Get the details of image collections
* This endpoint gets more detailed information about a collection, including its cover image and timestamps for its creation and most recent update. To get the images in collections, use `GET /v2/images/collections/{id}/items`.
*/
export async function main(
auth: Shutterstock,
id: string,
embed: string | undefined,
share_code: string | undefined,
) {
const url = new URL(
`https://api.shutterstock.com/v2/images/collections/${id}`,
);
for (const [k, v] of [
["embed", embed],
["share_code", share_code],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago