NEAR AICloud
Sign inStart building
deepseek-v3.2 icon
deepseek-v3.2
deepseek/deepseek-v3.2
128K context|$1.1/M input tokens|$1.1/M output tokens|$0.55/M cache read

Attested model served via Chutes TEE (verified end-to-end by NEAR AI).

Input / M tokens
$1.1
Output / M tokens
$1.1
Cache read
$0.55
Context
128K

Sample code and API for deepseek-v3.2

fetch("https://cloud-api.near.ai/v1/chat/completions", { method: "POST", headers: { "Authorization": "Bearer <YOUR-NEAR-AI-CLOUD-API-KEY>", "Content-Type": "application/json" }, body: JSON.stringify({ "model": "deepseek/deepseek-v3.2", "messages": [ { "role": "user", "content": "What is the meaning of life?" } ] }) })

You can also use NEAR AI Cloud with OpenAI's client API:

import OpenAI from "openai" const openai = new OpenAI({ baseURL: "https://cloud-api.near.ai/v1", apiKey: "<YOUR-NEAR-AI-CLOUD-API-KEY>", }) async function main() { const completion = await openai.chat.completions.create({ messages: [{ "role": "user", "content": "What is the meaning of life?" }], model: "deepseek/deepseek-v3.2", }) console.log(completion.choices[0]) } main()

Verify deepseek-v3.2

This model is hosted in a GPU TEE. TEE enables strong privacy with end-to-end encryption for data in transmission and in use. TEE protects the entire lifecycle of the model inference and gives you a proof of the execution. It allows you to verify that the given a model and an input, it produces a specific output both onchain and offchain.

Check out the docs for more details.

Get the attestation report.

curl 'https://cloud-api.near.ai/v1/attestation/report?model=deepseek/deepseek-v3.2' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <NEAR_AI_CLOUD_API_KEY>'

Retrieve the response signature using the chat completion ID. Signatures are available for 5 minutes.

CHAT_ID=chatcmpl-4af9... curl 'https://cloud-api.near.ai/v1/signature/${CHAT_ID}?model=deepseek/deepseek-v3.2&signing_algo=ecdsa' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <NEAR_AI_CLOUD_API_KEY>'