POST
/
chat-completions
curl --request POST \
  --url https://api.buildr.bot/chat-completions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "messages": [
    {
      "role": "user",
      "content": "How do I swap 0.1 BNB to MUBARAK?"
    }
  ],
  "model": "gpt-4",
  "context": "user wants to swap tokens"
}'
{
  "reply": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
messages
object[]
required

The conversation messages to send to Buildr Agent.

model
string

The model to use for chat completion

Example:

"gpt-4"

context
string

Optional context for the agent (e.g., 'user wants to swap tokens').

Response

200
application/json
Successful chat response
reply
string

The response generated by the Buildr Agent.