Introducing Shora Cloud Platform v2.0 →
Shora

Developer Documentation

Comprehensive guides and references to help you integrate and build with Shora's e-commerce platform.

Quick Start

Get up and running in minutes

Follow these steps to start integrating Shora into your application

  1. 1. Get your API key

    Sign up for a developer account and get your API credentials.

    # Get your API key from the developer dashboard
    API_KEY="your_api_key_here"
  2. 2. Install the SDK

    Install our SDK using your favorite package manager.

    # Using npm
    npm install @shora/sdk
    
    # Using yarn
    yarn add @shora/sdk
  3. 3. Initialize the client

    Set up the Shora client in your application.

    import { ShoraClient } from '@shora/sdk';
    
    const client = new ShoraClient({
      apiKey: process.env.SHORA_API_KEY
    });
  4. 4. Make your first API call

    Test the integration with a simple API call.

    // Create a new product
    const product = await client.products.create({
      name: 'Test Product',
      price: 1999,  // in cents
      currency: 'USD',
      description: 'A test product'
    });
    
    console.log(product.id);  // 'prod_123abc'

Documentation

Explore our guides

Detailed documentation for every aspect of the Shora platform

Core Concepts

Learn about the fundamental concepts and architecture of Shora.

API Reference

Complete reference for all API endpoints and objects.

Guides & Tutorials

Step-by-step guides for common integration scenarios.

Need help?

Our developer support team is here to help you succeed.

Documentation
Comprehensive guides and API reference.
Community
Join our developer community for support.