Documentation
Getting started
Quick start

Quick start

This is a quick 2-steps guide for using Upstage Console (opens in a new tab) and you can find more informations in the FAQ.

Visit our console (opens in a new tab) and start using it right away.

Get an API key

  1. To get started, create a new account or log in to the console. Find and click the API Keys tab.
  2. Click on the Create API Key button. You can edit key’s name and add a note. Using name and note can help you easily identify which API you used later. (Keep your key secure and confidential.)

Make an API request

Choose the task and request the API with the example code.
You can find an introduction to models here.

curl --location 'https://api.upstage.ai/v1/solar/chat/completions' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "solar-1-mini-chat",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Hello!"
      }
    ],
    "stream": true
  }'

Learn more

  1. To learn more about using the API, please read the Tutorials or APIs.
  2. For questions or help, click Support (opens in a new tab).