Skip to main content

Overview

The Genesy API is a RESTful API that can be accessed directly using HTTP requests from any programming language or tool like cURL.

Quick Start

All requests require an API key in the x-api-key header:
curl https://openapi.genesy.ai/endpoint \
  -H "x-api-key: gsk_your_api_key_here" \
  -H "Content-Type: application/json"

Language Examples

import requests

headers = {
    "x-api-key": "gsk_your_api_key_here",
    "Content-Type": "application/json"
}

response = requests.get("https://openapi.genesy.ai/endpoint", headers=headers)
data = response.json()

Next Steps