# Quickstart

Beautiful AI responses start with simple code — and this free API makes it easy to get\
started with no authentication required.

{% hint style="info" %}
Want to see all available models? Head to the API section to learn more.
{% endhint %}

Your First Request

Copy and paste this code to make your first Claude API call. It's that simple:

{% code title="Main.py" %}

```py
import requests
url = "https://diwness.cloud/v1/chat/completions"

prompt = "Hey!"

payload = {
    "model": "claude-sonnet-4-5-20250929",
    "messages": [
        {
            "role": "user",
            "content": prompt
        }
    ]
}

response = requests.post(url, json=payload)
result = response.json()

print("\nClaude:", result['choices'][0]['message']['content'])

```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.proximity.wtf/documentation/getting-started/quickstart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
