PixVersePaidOperationalModerated
PixVerse Mask Selection
API model name: pixverse-mask-selection
PixVerse Mask Selection is PixVerse's AI model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- PixVerse
- Type
- AI model
What is PixVerse Mask Selection used for?
- Chatbots & assistants — conversational AI, drafting, summarizing and Q&A.
Related models
PixVerse Image TemplatePixVerse · $25.62 / 1MPixVerse LipsyncPixVerse · $25.62 / 1MPixVerse MimicPixVerse · $25.62 / 1MPixVerse ModifyPixVerse · $25.62 / 1MPixVerse Multi TransitionPixVerse · $25.62 / 1MPixVerse RestylePixVerse · $25.62 / 1MPixVerse Sound EffectPixVerse · $25.62 / 1MPixVerse SwapPixVerse · $25.62 / 1MPixVerse VideoPixVerse · $25.62 / 1MEleven V3/text To DialogueElevenLabs · $165.00 / 1MEleven V3/text To SpeechElevenLabs · $165.00 / 1MElevenLabs SFXElevenLabs · $0.02 / 1M
PixVerse Mask Selection — frequently asked questions
- How much does PixVerse Mask Selection cost?
- PixVerse Mask Selection is billed per generation rather than per token. See the pricing page for the current rate.
- What can PixVerse Mask Selection do?
- PixVerse Mask Selection is PixVerse's AI model, accessible through the Api.Airforce API.
- Is PixVerse Mask Selection free to use?
- PixVerse Mask Selection is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use PixVerse Mask Selection via the API?
- PixVerse Mask Selection is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID pixverse-mask-selection with your Api.Airforce API key.
- Who makes PixVerse Mask Selection?
- PixVerse Mask Selection is PixVerse's AI model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use PixVerse Mask Selection via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass pixverse-mask-selection as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "pixverse-mask-selection",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="pixverse-mask-selection",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "pixverse-mask-selection",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);