Skip to main content
GET
/
v1
/
models
/
{model}
Get Model
curl --request GET \
  --url https://api.quiver.ai/v1/models/{model} \
  --header 'Authorization: Bearer <token>'
{
  "context_length": 131072,
  "created": 1704067200,
  "description": "Best default for speed and quality, with stronger prompt following and more precise SVG structure.",
  "id": "arrow-1.1",
  "input_modalities": [
    "text",
    "image"
  ],
  "max_output_length": 131072,
  "name": "Arrow 1.1",
  "object": "model",
  "output_modalities": [
    "svg"
  ],
  "owned_by": "quiverai",
  "pricing": {
    "svg_generate": "0.20",
    "svg_vectorize": "0.15"
  },
  "pricing_credits": {
    "svg_generate": 20,
    "svg_vectorize": 15
  },
  "supported_operations": [
    "svg_generate",
    "svg_vectorize"
  ],
  "supported_sampling_parameters": [
    "temperature",
    "top_p",
    "presence_penalty"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.quiver.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authentication via Bearer token API key

Path Parameters

model
string
required

Model identifier

Minimum string length: 1
Example:

"arrow-1.1"

Response

Model details

created
integer
required
Required range: x >= 0
id
string
required
Minimum string length: 1
object
enum<string>
required
Available options:
model
owned_by
string
required
context_length
integer
description
string
input_modalities
enum<string>[]
Available options:
text,
image,
svg
max_output_length
integer
name
string
output_modalities
enum<string>[]
Available options:
text,
image,
svg
pricing
object
deprecated

Deprecated. Prefer pricing_credits for per-request credit debits. USD strings are legacy placeholders.

pricing_credits
object
supported_operations
enum<string>[]
Available options:
svg_generate,
svg_edit,
svg_vectorize
supported_sampling_parameters
enum<string>[]
Available options:
temperature,
top_p,
top_k,
repetition_penalty,
presence_penalty,
stop