Request API access
Submit this form and your token appears on this page immediately — 10 requests per month at 2 per second, no waiting for approval. An admin then reviews your request and can raise those limits on the same token, so you never have to swap it out.
Not ready to sign up? The API also answers 2 requests per IP per day with no token at all.
Using it from your own frontend
const res = await fetch('/api/actresses?category=film&limit=20', {
headers: { Authorization: `Bearer ${process.env.NEXT_PUBLIC_BOLLY_TOKEN}` }
});
const { data, pagination } = await res.json();