Learn how to make your first API request.
Generate an API key in the dashboard and securely store it in a safe location, such as a .zshrc file or another text file on your computer. After generating the key, set it as an environment variable in your terminal for secure API access.
To make your first API request, use your API key as a Bearer Token in the Authorization header. You can interact with the API directly using any HTTP client of your choice.
curl -X GET \
-H "Authorization: Bearer YOUR_API_KEY" \
https://rerender.genly.ai/api/ping