The Anaconda Desktop API provides a programmatic interface for managing models. It provides a complete infrastructure for downloading, hosting, and serving models on your own hardware.Documentation Index
Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Configuring the Desktop API
To access your Desktop API key and API server port:- Select the user dropdown menu in the upper-right corner.
- Select Settings.
- Navigate to the Desktop API Configurations section.
Making your first request
Understanding your server configuration
Your Desktop API server runs locally on your machine at the addresslocalhost (also written as 127.0.0.1).
The Settings page shows two additional key pieces of information you’ll need:
- Server port: The port number where your server listens for requests.
- API key: Used for authentication in your requests.
http://localhost:8001/
Testing your connection
To test your connection to the Desktop API server, open Anaconda Prompt (Terminal on macOS/Linux) and run the following command:/api/models/health ok. If you receive an error, verify your API key and port number match what’s on the Settings page, then try again.