GGateYourWay API
Status RU Create key
Quickstart

Your first request in minutes

Create a scoped key, choose a model from the catalog, and send a minimal request.

  1. 1

    Create an API key

    Open Keys in the cabinet, choose a family and public group. The raw key is shown once.

    Open key management →
  2. 2

    Choose a model

    The key scope must allow the selected model and endpoint. The current list is available through the catalog.

    Browse models →
  3. 3

    Send the request

    bash
    curl https://api.gateyourway.com/v1/chat/completions \
      -H "Content-Type: application/json" \
      -H "Authorization: Bearer gyw-sk-YOUR_KEY" \
      -d '{
        "model": "gpt-5.6-luna",
        "messages": [{"role": "user", "content": "Reply with OK"}]
      }'
    python
    from openai import OpenAI
    
    client = OpenAI(
        api_key="gyw-sk-YOUR_KEY",
        base_url="https://api.gateyourway.com/v1",
    )
    
    response = client.chat.completions.create(
        model="gpt-5.6-luna",
        messages=[{"role": "user", "content": "Reply with OK"}],
    )
    print(response.choices[0].message.content)
  4. 4

    Inspect usage

    After a successful response, open Usage to see the request ID, tokens, cache metadata, public rates, and final charge.

    Open Usage →