Quick Start

Get up and running with AppStore Copilot in under 5 minutes.

Prerequisites

Before you begin, make sure you have:

  • An AppStore Copilot account (sign up at the dashboard)
  • An API key (create one in Settings → API Keys)
  • Node.js 18+ (for CLI usage)

Step 1: Install the CLI

Install the AppStore Copilot CLI globally using npm:

Terminalbash
npm install -g @appstorecopilot/cli

Verify the installation:

Terminalbash
asc --version

Step 2: Authenticate

Log in with your API key:

Terminalbash
asc auth login
# Or provide the key directly
asc auth login --key asc_live_xxxxxxxxxx

Step 3: Create a Project

Create a new project to manage your app:

Terminalbash
# Create project interactively
asc projects create
# Or via API
curl -X POST https://api.appstorecopilot.com/v1/projects \
-H "Authorization: Bearer $ASC_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My Awesome App",
"appStoreAppId": "123456789"
}'

Step 4: Sync Store Metadata

Pull your existing metadata from the App Store or Play Store:

Terminalbash
# Pull from App Store
asc pull --store appstore
# Pull from Play Store
asc pull --store playstore
# Pull from both stores
asc pull --store both

Step 5: Translate to New Languages

Use AI to translate your metadata to new languages:

Terminalbash
# Translate to specific languages
asc translate --from en-US --to es-ES,fr-FR,de-DE
# Translate to all supported languages
asc translate --from en-US --to all

Step 6: Push Changes

Push your changes back to the stores:

Terminalbash
# Push to App Store
asc push --store appstore
# Push to both stores
asc push --store both

Next Steps