ORYASTRA
Products
Solutions
Developers
Research
Pricing
Resources
About
EN
Login
ORYASTRA

With fire at the core, toward the realm of starsLet intelligence reach the real world

About

  • Company profile
  • Join us
  • Current focus
  • Stage progress
  • Strategic partners
  • Contact us
  • Security & Privacy
  • Trustworthy AI

Products

  • NOREK Chat
  • NOREK Agent
  • ORAST
  • Product Overview

Solutions

  • Individuals
  • Teams
  • Enterprise
  • Healthcare
  • Robotics & Embodied AI
  • Education
  • Research Innovation
  • Intelligent Work

Developers

  • SDK
  • API
  • Docs

Research

  • Research Overview
  • Agent Research
  • Multimodal Intelligence
  • Model Research

Pricing

  • NOREK Subscription

Contact and follow us

oryastra
Emailoryastra@starwardai.cn
Phone18512185217
Official social media
Official social media
Business cooperation
Business cooperation
© 2026 Towarsstar (Shanghai) AI Technology Co., Ltd.All rights reserved.沪ICP备2026020218号-1Privacy PolicyTerms of Service

Developer documentation

From quickstart to core capabilities, learn how to build with the ORYASTRA AI platform.

Contents

Get started/Quickstart

Quickstart

Complete the basic setup and send your first conversation request in minutes.

01

Prepare your environment

Make sure your environment has the required tools and server-side credentials.

  • An HTTP client that supports HTTPS.
  • A project with an API key.
  • Optional: an official SDK for your runtime.
02

Configure authentication

ORYASTRA AI authenticates requests with a bearer token. Never expose an API key in browser code or commit it to source control.

Authorization: Bearer YOUR_API_KEY

Note

An API key is shown in full only when it is created. Store it in a secure secrets manager.

03

Send your first request

Choose a language and run the minimal example below. Your preference is reused by later code samples.

curl https://www.oryastra.com/api/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "oryastra-chat",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
04

Read the response

A successful request returns JSON. Keep its request identifier for log correlation and troubleshooting.

Response
{
  "id": "chatcmpl_01J9...",
  "model": "oryastra-chat",
  "choices": [
    { "message": { "role": "assistant", "content": "Hello!" } }
  ]
}

Base configuration

Base URL
https://www.oryastra.com/api/v1
Authentication
Bearer Token
Data format
JSON
Recommended timeout
30s