Skip to content

Getting Started

Get started with the Prediko API by creating an API key and making your first request.

  • A Prediko account with API access enabled
  • Basic familiarity with REST APIs
  1. Get your API key

    Create an API key from your Prediko Dashboard under Settings > API Keys.

    See Authentication for details on key format and security best practices.

  2. Make your first request

  3. Explore the response

Terminal window
curl -X GET "https://api.prediko.io/api/v1/orders" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": [
{
"name": "PO-001",
"status": "CONFIRMED",
"supplier_name": "Acme Corp",
"delivery": "2025-02-15",
"order_type": "FINISHED_GOOD"
}
],
"total": 50
}