Getting started
POST https://api-uicp.yelbolt.workers.dev/v1/get-palette
Content-Type: application/jsonLast updated
Most endpoints are public and require no credentials. Just call them directly with a JSON body:
POST https://api-uicp.yelbolt.workers.dev/v1/get-palette
Content-Type: application/jsonTo publish or manage palettes in the community gallery you'll need an access token. Here's the flow:
Call GET /authenticate — it returns a Server-Sent Events stream.
Open the auth_url from the first event in your browser and sign in.
The stream emits a success event with access_token and refresh_token.
Pass the token on protected endpoints: Authorization: Bearer <access_token>
Last updated