Getting Started

This guide will help you set up and start using the Julep API.

Prerequisites

  • A Julep API key

  • Basic understanding of RESTful APIs

  • Familiarity with JSON and curl (or any HTTP client)

Initial Setup

  1. Obtain your API key from the Julep dashboard.

  2. Set up your environment to include the API key in all requests:

export JULEP_API_KEY=your_api_key_here
  1. Test your setup with a simple API call:

curl -H "Authorization: Bearer $JULEP_API_KEY" https://api.julep.ai/api/agents

If successful, you should receive a list of agents (or an empty list if you haven't created any yet).

Next Steps

Last updated