Skip to main content
Get started using the SambaNova API in just a few minutes.

Prerequisites

Before you begin, ensure you have:
  • A SambaCloud account, or access to a SambaStack deployment through your system administrator.
  • Python 3, Node.js, or curl installed, depending on your preferred integration method.
1

Get your API key.

To generate an API key, go to the API keys and URLs page. When generating API keys, be sure to save them securely, as they can’t be viewed again.
You can generate and use up to 25 API keys.
2

Pick a model.

SambaCloud developers can view the available models and details on the SambaCloud model page.SambaStack developers should consult with their system administrator to determine which models are available on their system. Model details can then be viewed on the SambaStack models page.
This guide uses Meta-Llama-3.3-70B-Instruct as an example for the remainder of these steps.
3

Make an API request.

You can make an inference request in multiple ways. See two examples below:
  • SambaNova SDK - Use Javascript or Python for a more flexible integration.
  • OpenAI client library – Use Javascript or Python for a more flexible integration.
  • CURL command – Send a request directly from the command line.

SambaNova SDK

To get started, choose your preferred programming language. Next, open a terminal and run the command to install the SambaNova SDK.
Next, copy the following code into a new file.
After copying the code into the file, replace the placeholder strings "your-sambanova-base-url" and "your-sambanova-api-key" with your actual Base URL and API Key. Then, run the file in a terminal using the command shown below.
After running the program, you’ll see output similar to the following:

OpenAI client library

To get started, select your preferred programming language. Then, open a terminal window and run the command to install the OpenAI library.
Next, copy the following code into a new file.
Once copied into the file, replace the string fields "your-sambanova-base-url" and "your-sambanova-api-key" with your base URL and API Key values. Then run the file with the command below in a terminal window.
After you run the program, you’ll see output similar to the following:

CURL command

In a terminal window, run the CURL command to make your first request to the API.

Next steps

Now that you can make requests to a model, great potential of building AI-powered applications await. Get inspired of what to build by exploring the AI Starter Kits, a collection of open-source Python projects.