Skip to main content
GET
/
v1
/
pricing
Get the current pricing rate card
curl --request GET \
  --url https://api.example.com/v1/pricing \
  --header 'X-Api-Key: <api-key>'
{
  "object": "pricing",
  "version": "2026-05-15",
  "currency": "credit",
  "description": "Baseline rate card per Aurous-Version. Your team may have negotiated rates or platform-tuned multipliers that differ from these numbers — call POST /v1/images/estimate or POST /v1/videos/estimate with the same body you would POST to /v1/images or /v1/videos for an exact amount before charging.",
  "image": {
    "base": 1,
    "enhance_prompt_multiplier": 2,
    "reference_image_per_image": 0
  },
  "video": {
    "base_per_second": 0.5,
    "resolution_factor": {
      "480p": 1,
      "720p": 1.5,
      "1080p": 2.5
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aurous-labs.com/llms.txt

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

Authorizations

X-Api-Key
string
header
required

Your team API key (starts with al_live_ — legacy keys may start with og_).

Headers

Aurous-Version
string

Optional API version pin (YYYY-MM-DD). Defaults to your team's pinned version, or the system default 2026-05-15 for unauthenticated requests.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-05-15"

Response

Current pricing rate card for the resolved Aurous-Version.

object
enum<string>
required

Discriminator

Available options:
pricing
Example:

"pricing"

version
string
required

Aurous-Version this rate card applies to (matches the Aurous-Version response header).

Example:

"2026-05-15"

currency
enum<string>
required

Currency unit. All amounts in this response and on cost.breakdown echoes are in credit.

Available options:
credit
Example:

"credit"

description
string
required

Note on rate-card semantics. Reminds customers that a per-team negotiated rate or live-tuned multipliers may differ from the published baseline; call POST /v1/{images,videos}/estimate for an exact pre-charge amount.

Example:

"Baseline rate card per Aurous-Version. Your team may have negotiated rates or platform-tuned multipliers that differ from these numbers — call POST /v1/images/estimate or POST /v1/videos/estimate with the same body you would POST to /v1/images or /v1/videos for an exact amount before charging."

image
object
required

Image-generation pricing.

video
object
required

Video-generation pricing.