Wizlay

Getting Started with Wizlay

Learn how to integrate Wizlay into your application in minutes

Quick Start Guide

1. Create Wizlay Account

Sign up for a Wizlay account to get started with our unified API layer for LLMs.

2. Create Your Organization

Set up your organization to manage multiple clusters and team access.

3. Create Your Cluster

Create a cluster that will serve as your main API endpoint. With Pro and Scale plans, you can have unlimited clusters for different use cases.

4. Add Custom API Actions

Configure custom API actions in your cluster to handle specific tasks and integrations.

5. Get Your API Credentials

Copy your API key from profile setting and Cluster ID on the cluster details.

6. Make Your First Request

Send your conversation to the cluster API using the following cURL command:

curl -X POST \
  'https://api.wizlay.com/v1/clusters?id={YOUR_CLUSTER_ID}' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "content": {
        "messages": [
            {
                "role": "system",
                "content": "You are a helpful assistant."
            },
            {
                "role": "user",
                "content": "How are you?"
            }
        ]
    }
}'