Get an API key
Before you can make API calls, you need to create an API key in AI Studio.Navigate to API Keys
From the AI Studio home page, open Admin settings in the left sidebar, then select API Keys.

Configure the agent
Select the title field for the API agent and give it a name. Add a short description so you can keep track of what the agent is for.

Get your API key
On the Manage keys tab, each key is listed by name (the default is
Production). The first time a key is created, copy the full value with Copy and store it in a secure place. You can’t view or reveal the full key again after that.You can generate another key with the same capabilities from Generate a new key on the agent page.Bearer token in the header:
Make your first API call
Below is an example of an API call to the chat completion endpoint. It completes a single-turn chat completion, where the user provides a message and the AI assistant generates a response. The request is non-streaming and waits until the response is complete before returning.choices array. The message.content field of the first choice contains the generated text. The message.role field indicates that the message is an AI assistant message.
In a streaming response, the structure of the response is similar. However, the content of the streamed response is returned in a
choices[0].delta.content field, rather than the choices[0].message.content field. Learn more about streaming responses in the chat completion guide.Next steps
Now that you’ve made your first API call, learn how to use the Writer SDKs to make calls to the Writer API in your applications. Or, learn more about building with the chat completion endpoint:- Learn how to build a multi-turn, conversational AI app using the chat completion guide
- See the full chat completion endpoint API reference