Getting started

Quickstart

Get up and running with Geins in minutes

Your First API Call in 5 Minutes

Get your API key and make your first call to the Geins Merchant API.

Step 1: Get Your API Key

  1. Log in to your account
  2. Got to the Merchant Center, navigate to SettingsAPI Keys
  3. Create a new API key or copy an existing one

Step 2: Make Your First Call

curl -X POST 'https://merchantapi.geins.io/graphql' \
  -H 'Content-Type: application/json' \
  -H 'X-ApiKey: {MERCHANT_API_KEY}' \
  -d '{
    "query": "query { products(take: 3) { products { productId name alias } } }"
  }'

Step 3: Explore the Response

{
  "data": {
    "products": {
      "products": [
        {
          "productId": 12345,
          "name": "Awesome Product",
          "alias": "awesome-product"
        }
      ]
    }
  }
}

🎉 Congratulations! You've just made your first Geins API call!

Next Steps

Geins Concept

Understand channels, products, and the data model

Full API Reference

Explore all available queries and mutations

Open Source Launchpads

Starter projects for Nuxt, Next.js, and more