Picsart API Platform
← All models

Gemini 3 Pro

Premium

Google · Text · Video → Text

Google’s top Gemini model — text, image, and video reasoning.

Model ID: gemini-3-proWorkflow: gemini
VisionVideo InputThinking
Try on Playground ↗

Install the SDK

The SDK targets Node 20+ and ships with TypeScript types.

npm
npm install @picsart/ai-sdk

Authenticate

Create a client once with your API key — it's sent as a bearer token on every request.

TypeScript
import { createClient } from '@picsart/ai-sdk';

const ai = createClient({
  apiKey: process.env.PICSART_API_KEY, // sent as: Authorization: Bearer <key>
  apiUrl: 'https://api.picsart.com',
});

Run the model

Call the model with its parameters. This example uses the required ones.

TypeScript
import { createClient } from '@picsart/ai-sdk';

const ai = createClient({
  apiKey: process.env.PICSART_API_KEY,
  apiUrl: 'https://api.picsart.com',
});

const { text } = await ai.generateText('gemini-3-pro', {
  prompt: "A serene mountain lake at golden hour, ultra detailed"
});

console.log(text);

Parameters

4 parameters. Required ones must be supplied; the rest fall back to their defaults.

ParameterTypeRequiredDefaultDetails
prompt
Prompt
textyes
imageUrls
Images
file (image[])no
videoUrl
Video
file (video)no
thinking
Thinking
enumnooffoff, low, high

Output

generateText() resolves to the generated text plus the raw response.

Result
{
  "text": "…generated text…",
  "model": "gemini-3-pro"
}