Quickstart
This guide will help you to implement a simple use of the EZLINK AI API project. You can then view the relevant sections to obtain detailed API usage plans and detailed parameters.
Before you can make requests to the EZLINK AI API, you will need to grab your API key from your dashboard. You find it under API Keys
Making your first API request
After obtaining your API key, you can use it to make your first request. Below is a brief overview of how to call the OpenAI API
POST
/v1/chat/completionscurl https://api.ezlinkai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $YOUR_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}'
What's next?
Great, you're now set up with an API client and have made your first request to the API. Here are a few links that might be handy as you venture further into the EZLINK AI API: