Skip to main content

Quick Start

To get started, you can use Chat API like this:

curl --location 'https://chatapi.paperai.life/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY_HERE' \
--data '{
"model": "gpt-4",
"stream": false,
"messages": [
{
"role": "system",
"content": ""
},
{
"role": "user",
"content": "What is the meaning of life?"
}
]
}
'