Plug into a fashion ecosystem where identity, creation, and commerce converge. We are opening a limited sandbox for partners who want to prototype against our core services.
We support OAuth 2.0 and API keys in the sandbox. Production uses OAuth 2.0 with scoped permissions. All tokens expire after 3600 seconds — your client should refresh automatically using the client credentials flow.
POST /oauth/token Content-Type: application/json { "grant_type": "client_credentials", "client_id": "your_client_id", "client_secret": "your_secret" } // Response { "access_token": "eyJhbGci...", "token_type": "Bearer", "expires_in": 3600 }
We expose both REST v1 for simple integrations and GraphQL for complex reads and joins. Schema exposure is staged — early partners receive schema previews in the partner portal.
curl -X GET \ https://api.fshnista.com/v1/storefronts/{id} \ -H "Authorization: Bearer $TOKEN" \ -H "Accept: application/json" // Response { "id": "sf_01HXYZ...", "handle": "@yourbrand", "products_count": 24, "status": "active" }
Share your concept and technical scope. If you need help shaping the brief or mapping the data model, we are here before you write a single line.