Authentication

Learn about API Keys in Laminar

Overview

API keys in Laminar are used to authenticate requests to the Laminar API. They are created and managed in workspace settings and provide secure access to the API.

Usage

API keys are to be passed in the query parameters of your desired request via the api_key param.

curl -X POST 'https://api.laminar.run/workflow/execute/{workflowId}?api_key=<your_api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
    "data": "your workflow input"
  }'

Best Practices

  • Rotate keys periodically for security

  • Never share or commit API keys to version control

Last updated

Was this helpful?