Developer Platform
Welcome to your team’s developer platform
2
Make your first request
// Import the SDK
import ExampleAPI from "example-api";
// Initialize the client
const client = new ExampleAPI({ apiKey: "YOUR_API_KEY" });
// Send your first message
const response = await client.messages.send({
message: "Hello, world!"
});import requests
response = requests.post(
"https://api.example.com/messages",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
json={
"message": "Hello, world!"
},
)
print(response.json())


