curl -X POST https://api.opentools.com/v1/chat/completions \
-H "Authorization: Bearer $YOUR_OPENTOOLS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-3.7-sonnet",
"messages": [
{ "role": "system", "content": "You are a research assistant specializing in space exploration and rocketry news. Provide in-depth, factual information by searching for the latest developments in space missions, astronomical discoveries, and space technology, analyzing multiple sources, and summarizing key findings and scientific implications." },
{
"role": "user",
"content": "What is the latest on the two American astronauts on the Starliner mission in the ISS?"
}
],
"tools": [{ "type": "mcp", "ref": "exa" }]
}'