/api/v1/partner/artworksList Artworks
Fetch artwork records visible to the authorized partner workspace. Supports filtering and pagination for collector-led collaboration.
Query Parameters
limitoffsetbrandin_stockupdated_sincePartner API
Private preview
Collecta is the operating system for serious art collections. Invited galleries, dealers, advisors, and service firms can connect collector-led workflows using OAuth 2.1 and REST APIs.
The partner API is intentionally narrow: artworks, order operations, certificates, inventory sync, usage, and webhook subscriptions. It is not a public marketplace API.
Legacy optical and kiosk surfaces are excluded from this preview.
Collecta uses OAuth 2.1 with PKCE for secure partner authentication
Contact Collecta to register your application. You will receive a client_id and client_secret.
Send users to the Supabase authorization endpoint with your client_id, redirect_uri, and requested scopes.
Users see the Collecta consent page and approve access to their collector-linked partner data.
Your server exchanges the authorization code for access and refresh tokens.
Include the access token in the Authorization header: Bearer <token>
openidVerify user identity
emailAccess user email address
profileAccess user profile information
All endpoints require a valid OAuth access token
/api/v1/partner/artworksFetch artwork records visible to the authorized partner workspace. Supports filtering and pagination for collector-led collaboration.
Query Parameters
limitoffsetbrandin_stockupdated_since/api/v1/partner/ordersFetch collector-originated orders for the authorized partner workspace. Supports pagination and filtering by status or date.
Query Parameters
limitoffsetstatussince/api/v1/partner/orders/{orderId}Fetch full details for a specific order including artwork context, certificate data, and payment details.
/api/v1/partner/orders/{orderId}Update order status for fulfillment tracking. Valid statuses: pending, in_progress, completed, shipped, cancelled. Triggers webhooks.
/api/v1/partner/certificatesFetch provenance and certificate data from partner-facing orders. Includes artwork details and dimensions.
Query Parameters
limitoffsetorder_idsince/api/v1/partner/inventoryUpdate availability, stock quantities, and prices using the current partner sync surface. This endpoint retains legacy item identifier support for compatibility.
/api/v1/partner/webhooksList your webhook subscriptions and their delivery status.
/api/v1/partner/webhooksCreate a new webhook subscription. Returns a secret for HMAC signature verification (shown once).
/api/v1/partner/webhooks/{webhookId}Update webhook URL, events, or enabled status.
/api/v1/partner/webhooks/{webhookId}Delete a webhook subscription.
Receive real-time notifications when events occur
order.createdFired when a collector workflow creates a new partner-facing order
order.status_changedFired when fulfillment status changes
order.completedFired when an order is marked complete
inventory.updatedFired when partner inventory sync writes compatibility updates
X-Webhook-Signature header matches your computed signatureX-Webhook-Id header for idempotencycurl -X GET "https://collecta.app/api/v1/partner/artworks?limit=10" \
-H "Authorization: Bearer <access_token>" \
-H "Content-Type: application/json"Contact us to request invited access and receive OAuth credentials.