{
"model": "gpt-4.1",
"messages": [
{
"role": "user",
"content": [
{
"type": "file",
"file": {
"filename": "draconomicon.pdf",
"file_data": "data:application/pdf;base64,${base64String}"
}
},
{
"type": "text",
"text": "What is the first dragon in the book?"
}
]
}
]
}curl --location --request POST '/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-4.1",
"messages": [
{
"role": "user",
"content": [
{
"type": "file",
"file": {
"filename": "draconomicon.pdf",
"file_data": "data:application/pdf;base64,${base64String}"
}
},
{
"type": "text",
"text": "What is the first dragon in the book?"
}
]
}
]
}'{}