{
    "openapi": "3.0.3",
    "info": {
        "title": "Storyblocks Downloader",
        "version": "1.3",
        "description": "# Storyblocks Downloader API\n\nTurn any **Storyblocks** item link into the **original file** with one call — stock footage in 4K / HD / SD (MP4 / MOV), music and SFX (WAV / MP3), images (PNG / JPG / SVG) and After Effects / Premiere / DaVinci templates.\n\n## How it works\n1. `POST /download` with the item URL (`www.storyblocks.com/video/stock/…`, `/audio/stock/…`, `/images/stock/…`).\n2. You get `download.url` — our signed link, valid 1 hour, re-fetchable — (no per-item certificate — Storyblocks covers downloads under the account's unlimited license).\n3. Fetch the file directly from that link — it does not count as an API request and carries no bandwidth fee.\n\n`GET /resolve` lists the qualities the item offers (`item.variants`); pass one as `quality` to `POST /download` or leave it out for the best available.\n\n## Endpoints\n| Endpoint | Description |\n|---|---|\n| `POST /download` | Resolve an item → download links (1 request = 1 download) |\n| `GET /resolve?url=` | Identify an item (id, type, title, available qualities) without spending a download |\n| `GET /me` · `GET /usage` | Your plan and remaining quota |\n| `GET /health` | Is the downloader up right now |\n| `GET /status` | 7-day uptime |\n\n## Plans\n- **Basic** — $0.00/mo · 5 requests / day (hard limit) · 1 req/min\n- **Pro** — $5.99/mo · 200 requests / month + $0.02 per extra · 5 req/min\n- **Ultra** — $14.99/mo · 800 requests / month + $0.015 per extra · 10 req/min\n- **Mega** — $29.99/mo · 2,000 requests / month + $0.01 per extra · 15 req/min\n\nAll plans: Original files · All qualities (4K / HD / SD, WAV / MP3, PNG / JPG) · Video, audio, images & templates · Signed 1-hour download link.\n\nUptime is public at https://stockzen.io/status. Full docs: https://stockzen.io/api",
        "termsOfService": "https://stockzen.io/tos",
        "contact": {
            "name": "Stockzen support",
            "email": "support@stockzen.io",
            "url": "https://app.stockzen.io/helpdesk"
        }
    },
    "servers": [
        {
            "url": "https://stockzen.io/api/v1"
        }
    ],
    "tags": [
        {
            "name": "Downloads"
        },
        {
            "name": "Account"
        },
        {
            "name": "Catalogue"
        }
    ],
    "security": [
        {
            "rapidApiKey": []
        }
    ],
    "paths": {
        "/me": {
            "get": {
                "tags": [
                    "Account"
                ],
                "summary": "Account and plan",
                "operationId": "getMe",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Me"
                                }
                            }
                        }
                    },
                    "401": {
                        "description": "Missing or invalid API key",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "429": {
                        "description": "Rate limited",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/usage": {
            "get": {
                "tags": [
                    "Account"
                ],
                "summary": "Today's allowance per downloader",
                "operationId": "getUsage",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Usage"
                                }
                            }
                        }
                    },
                    "401": {
                        "description": "Missing or invalid API key",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "No active plan",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "429": {
                        "description": "Rate limited",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/services": {
            "get": {
                "tags": [
                    "Catalogue"
                ],
                "summary": "Supported downloaders and their API availability",
                "operationId": "listServices",
                "security": [
                    {
                        "rapidApiKey": []
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "services": {
                                            "type": "array",
                                            "items": {
                                                "$ref": "#/components/schemas/Service"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "/status": {
            "get": {
                "tags": [
                    "Catalogue"
                ],
                "summary": "Live status and 7-day uptime",
                "operationId": "getStatus",
                "security": [
                    {
                        "rapidApiKey": []
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Status"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/health": {
            "get": {
                "tags": [
                    "Catalogue"
                ],
                "summary": "Is the Storyblocks downloader up right now",
                "operationId": "getHealth",
                "security": [
                    {
                        "rapidApiKey": []
                    }
                ],
                "parameters": [],
                "responses": {
                    "200": {
                        "description": "Healthy",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Health"
                                }
                            }
                        }
                    },
                    "503": {
                        "description": "Down or unknown",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Health"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/resolve": {
            "get": {
                "tags": [
                    "Downloads"
                ],
                "summary": "Identify an item without spending a download",
                "operationId": "resolveItem",
                "description": "Returns the item id, type and title plus the qualities/formats you can request in POST /download. Nothing is charged.",
                "parameters": [
                    {
                        "name": "url",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "format": "uri"
                        },
                        "example": "https://www.storyblocks.com/video/stock/aerial-view-of-the-city-at-sunset-435871219"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Resolved"
                                }
                            }
                        }
                    },
                    "401": {
                        "description": "Missing or invalid API key",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Link belongs to another listing (RapidAPI)",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "422": {
                        "description": "Invalid or unsupported URL",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "429": {
                        "description": "Rate limited",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "501": {
                        "description": "Service not available through the API yet",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "502": {
                        "description": "Upstream provider error",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/download": {
            "post": {
                "tags": [
                    "Downloads"
                ],
                "summary": "Get the original file for a Storyblocks item",
                "operationId": "download",
                "description": "Send the item page URL; receive a signed 1-hour download link. Spends one download from your quota. Same as POST /downloads.",
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/DownloadRequest"
                            },
                            "example": {
                                "url": "https://www.storyblocks.com/video/stock/aerial-view-of-the-city-at-sunset-435871219",
                                "license": true
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Download"
                                }
                            }
                        }
                    },
                    "401": {
                        "description": "Missing or invalid API key",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "No active plan / not included in trial / link belongs to another listing",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "422": {
                        "description": "Invalid or unsupported URL, or unknown quality/format",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "429": {
                        "description": "Download quota or rate limit reached",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "501": {
                        "description": "Service not available through the API yet",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    },
                    "502": {
                        "description": "Upstream provider error",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/Error"
                                }
                            }
                        }
                    }
                }
            }
        }
    },
    "components": {
        "securitySchemes": {
            "rapidApiKey": {
                "type": "apiKey",
                "in": "header",
                "name": "X-RapidAPI-Key",
                "description": "Injected by RapidAPI; subscribe to the API on RapidAPI Hub to get one."
            }
        },
        "schemas": {
            "Error": {
                "type": "object",
                "properties": {
                    "error": {
                        "type": "object",
                        "properties": {
                            "code": {
                                "type": "string",
                                "example": "limit_reached"
                            },
                            "message": {
                                "type": "string"
                            },
                            "status": {
                                "type": "integer"
                            },
                            "service": {
                                "type": "string"
                            },
                            "retry_after": {
                                "type": "integer"
                            },
                            "resets_at": {
                                "type": "string",
                                "format": "date-time"
                            }
                        }
                    },
                    "docs": {
                        "type": "string",
                        "format": "uri"
                    }
                }
            },
            "Me": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "login": {
                        "type": "string"
                    },
                    "email": {
                        "type": "string"
                    },
                    "name": {
                        "type": "string"
                    },
                    "plan": {
                        "type": "object",
                        "properties": {
                            "type": {
                                "type": "string",
                                "enum": [
                                    "trial",
                                    "monthly",
                                    "yearly",
                                    "individual",
                                    "none",
                                    "rapidapi"
                                ]
                            },
                            "active": {
                                "type": "boolean"
                            },
                            "product_ids": {
                                "type": "array",
                                "items": {
                                    "type": "integer"
                                }
                            },
                            "upgrade": {
                                "type": "string"
                            },
                            "rapidapi": {
                                "$ref": "#/components/schemas/RapidPlan"
                            }
                        }
                    },
                    "usage": {
                        "type": "object",
                        "description": "RapidAPI subscribers only",
                        "nullable": true
                    },
                    "api_key": {
                        "type": "object",
                        "nullable": true,
                        "properties": {
                            "prefix": {
                                "type": "string"
                            },
                            "label": {
                                "type": "string"
                            },
                            "created_at": {
                                "type": "string",
                                "format": "date-time"
                            }
                        }
                    },
                    "auth": {
                        "type": "string",
                        "enum": [
                            "key",
                            "rapidapi"
                        ]
                    },
                    "rate_limit": {
                        "type": "object",
                        "properties": {
                            "per_minute": {
                                "type": "integer"
                            },
                            "remaining": {
                                "type": "integer"
                            },
                            "resets_at": {
                                "type": "string",
                                "format": "date-time"
                            }
                        }
                    }
                }
            },
            "UsageRow": {
                "type": "object",
                "properties": {
                    "service": {
                        "type": "string",
                        "enum": [
                            "envato",
                            "storyblocks",
                            "vecteezy",
                            "motionarray",
                            "flaticon",
                            "freepik"
                        ]
                    },
                    "name": {
                        "type": "string"
                    },
                    "limit": {
                        "type": "integer"
                    },
                    "used": {
                        "type": "integer"
                    },
                    "remaining": {
                        "type": "integer"
                    },
                    "period": {
                        "type": "string",
                        "enum": [
                            "daily",
                            "lifetime"
                        ]
                    },
                    "resets_at": {
                        "type": "string",
                        "format": "date-time",
                        "nullable": true
                    },
                    "locked": {
                        "type": "string",
                        "nullable": true,
                        "enum": [
                            "under_development",
                            "not_included_in_trial",
                            "other_listing",
                            null
                        ],
                        "description": "Why the allowance is 0: the downloader is still under development, not part of the trial, or (RapidAPI) served by another listing"
                    },
                    "rapidapi": {
                        "type": "string",
                        "format": "uri",
                        "nullable": true,
                        "description": "RapidAPI only: listing that serves this downloader when locked = other_listing"
                    }
                }
            },
            "Usage": {
                "type": "object",
                "properties": {
                    "plan": {
                        "type": "string",
                        "enum": [
                            "trial",
                            "monthly",
                            "yearly",
                            "individual",
                            "rapidapi"
                        ]
                    },
                    "period": {
                        "type": "string",
                        "enum": [
                            "daily",
                            "lifetime",
                            "monthly"
                        ]
                    },
                    "resets_at": {
                        "type": "string",
                        "format": "date-time",
                        "nullable": true
                    },
                    "timezone": {
                        "type": "string"
                    },
                    "service": {
                        "type": "string",
                        "description": "RapidAPI only: the listing's downloader"
                    },
                    "rapidapi": {
                        "$ref": "#/components/schemas/RapidPlan"
                    },
                    "services": {
                        "type": "array",
                        "items": {
                            "$ref": "#/components/schemas/UsageRow"
                        }
                    }
                }
            },
            "Service": {
                "type": "object",
                "properties": {
                    "key": {
                        "type": "string",
                        "enum": [
                            "envato",
                            "storyblocks",
                            "vecteezy",
                            "motionarray",
                            "flaticon",
                            "freepik"
                        ]
                    },
                    "name": {
                        "type": "string"
                    },
                    "api": {
                        "type": "string",
                        "enum": [
                            "available",
                            "coming_soon",
                            "development"
                        ]
                    },
                    "telegram_bot": {
                        "type": "boolean",
                        "description": "Delivered by the Stockzen Telegram bot (independent of the REST API state)."
                    },
                    "license_certificates": {
                        "type": "boolean"
                    },
                    "license_note": {
                        "type": "string",
                        "nullable": true
                    },
                    "accepted_hosts": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "example_url": {
                        "type": "string"
                    },
                    "options": {
                        "type": "object",
                        "description": "Extra POST /downloads fields this service understands (name → description)",
                        "additionalProperties": {
                            "type": "string"
                        }
                    },
                    "web_downloader": {
                        "type": "string",
                        "format": "uri"
                    },
                    "rapidapi": {
                        "type": "string",
                        "format": "uri",
                        "nullable": true,
                        "description": "RapidAPI listing for this downloader"
                    }
                }
            },
            "Variant": {
                "type": "object",
                "description": "A quality/format the item is available in",
                "properties": {
                    "code": {
                        "type": "string",
                        "example": "4KMP4"
                    },
                    "label": {
                        "type": "string",
                        "example": "4K (MP4)"
                    },
                    "extension": {
                        "type": "string",
                        "nullable": true
                    },
                    "sized": {
                        "type": "boolean",
                        "description": "Flaticon: this format takes a `size`"
                    },
                    "note": {
                        "type": "string",
                        "nullable": true,
                        "description": "Magnific: dimensions / file note"
                    },
                    "width": {
                        "type": "integer",
                        "nullable": true,
                        "description": "Magnific photos"
                    },
                    "height": {
                        "type": "integer",
                        "nullable": true
                    }
                }
            },
            "Status": {
                "type": "object",
                "properties": {
                    "overall": {
                        "type": "string",
                        "enum": [
                            "operational",
                            "degraded",
                            "outage",
                            "unknown"
                        ]
                    },
                    "checked_at": {
                        "type": "string",
                        "format": "date-time",
                        "nullable": true
                    },
                    "services": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "key": {
                                    "type": "string"
                                },
                                "name": {
                                    "type": "string"
                                },
                                "state": {
                                    "type": "string",
                                    "enum": [
                                        "operational",
                                        "slow",
                                        "down",
                                        "unknown",
                                        "under_development"
                                    ]
                                },
                                "uptime_7d": {
                                    "type": "number",
                                    "nullable": true
                                },
                                "avg_response_ms": {
                                    "type": "integer",
                                    "nullable": true
                                },
                                "last_check": {
                                    "type": "string",
                                    "format": "date-time",
                                    "nullable": true
                                }
                            }
                        }
                    },
                    "page": {
                        "type": "string",
                        "format": "uri"
                    }
                }
            },
            "RapidPlan": {
                "type": "object",
                "properties": {
                    "key": {
                        "type": "string",
                        "enum": [
                            "BASIC",
                            "PRO",
                            "ULTRA",
                            "MEGA"
                        ]
                    },
                    "name": {
                        "type": "string"
                    },
                    "price_usd_month": {
                        "type": "number"
                    },
                    "quota": {
                        "type": "integer"
                    },
                    "period": {
                        "type": "string",
                        "enum": [
                            "daily",
                            "monthly"
                        ]
                    },
                    "overage_usd": {
                        "type": "number",
                        "nullable": true
                    },
                    "hard_limit": {
                        "type": "boolean"
                    },
                    "rate_limit_per_minute": {
                        "type": "integer"
                    },
                    "features": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "upgrade": {
                        "type": "string",
                        "format": "uri"
                    }
                }
            },
            "Health": {
                "type": "object",
                "properties": {
                    "ok": {
                        "type": "boolean"
                    },
                    "service": {
                        "type": "string",
                        "example": "storyblocks"
                    },
                    "state": {
                        "type": "string",
                        "enum": [
                            "operational",
                            "slow",
                            "down",
                            "unknown"
                        ]
                    },
                    "session": {
                        "type": "string",
                        "enum": [
                            "valid",
                            "invalid_or_unreachable",
                            "unknown"
                        ]
                    },
                    "response_ms": {
                        "type": "integer",
                        "nullable": true
                    },
                    "uptime_7d": {
                        "type": "number",
                        "nullable": true
                    },
                    "checked_at": {
                        "type": "string",
                        "format": "date-time",
                        "nullable": true
                    },
                    "status_page": {
                        "type": "string",
                        "format": "uri"
                    }
                }
            },
            "Resolved": {
                "type": "object",
                "properties": {
                    "service": {
                        "type": "string",
                        "enum": [
                            "envato",
                            "storyblocks",
                            "vecteezy",
                            "motionarray",
                            "flaticon",
                            "freepik"
                        ]
                    },
                    "item": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string",
                                "description": "Provider item id (Envato: UUID; Storyblocks / MotionArray / Vecteezy: numeric)"
                            },
                            "type": {
                                "type": "string",
                                "example": "video"
                            },
                            "title": {
                                "type": "string",
                                "nullable": true
                            },
                            "filename": {
                                "type": "string",
                                "nullable": true
                            },
                            "size": {
                                "type": "integer",
                                "nullable": true
                            },
                            "legacy_id": {
                                "type": "string",
                                "nullable": true,
                                "description": "Envato: the old elements.envato.com short id"
                            },
                            "variants": {
                                "type": "array",
                                "items": {
                                    "$ref": "#/components/schemas/Variant"
                                },
                                "description": "Storyblocks: qualities you can pass as `quality`"
                            },
                            "default_quality": {
                                "type": "string",
                                "description": "Storyblocks"
                            },
                            "formats": {
                                "type": "array",
                                "items": {
                                    "$ref": "#/components/schemas/Variant"
                                },
                                "description": "MotionArray footage, Flaticon, Magnific: formats you can pass as `format`"
                            },
                            "default_format": {
                                "type": "string",
                                "nullable": true,
                                "description": "MotionArray / Flaticon / Magnific"
                            },
                            "sizes": {
                                "type": "array",
                                "nullable": true,
                                "items": {
                                    "type": "string"
                                },
                                "description": "Flaticon icons: pixel sizes you can pass as `size` for png / gif / mp4"
                            },
                            "default_size": {
                                "type": "string",
                                "nullable": true,
                                "description": "Flaticon"
                            },
                            "pack": {
                                "type": "object",
                                "nullable": true,
                                "description": "Flaticon icon: the pack it belongs to",
                                "properties": {
                                    "id": {
                                        "type": "string"
                                    },
                                    "name": {
                                        "type": "string"
                                    }
                                }
                            },
                            "author": {
                                "type": "string",
                                "nullable": true,
                                "description": "Flaticon"
                            },
                            "premium": {
                                "type": "boolean",
                                "description": "Flaticon"
                            },
                            "items": {
                                "type": "integer",
                                "description": "Flaticon pack: number of icons"
                            },
                            "preview_url": {
                                "type": "string",
                                "format": "uri",
                                "nullable": true,
                                "description": "Flaticon / Magnific: preview image"
                            },
                            "slug": {
                                "type": "string",
                                "description": "Vecteezy"
                            },
                            "source_url": {
                                "type": "string",
                                "format": "uri"
                            },
                            "canonical_url": {
                                "type": "string",
                                "format": "uri"
                            }
                        }
                    },
                    "downloadable": {
                        "type": "boolean"
                    },
                    "charged": {
                        "type": "boolean",
                        "example": false
                    },
                    "next": {
                        "type": "object",
                        "description": "The POST /download call to make",
                        "properties": {
                            "method": {
                                "type": "string"
                            },
                            "url": {
                                "type": "string",
                                "format": "uri"
                            },
                            "body": {
                                "type": "object"
                            }
                        }
                    }
                }
            },
            "DownloadRequest": {
                "type": "object",
                "required": [
                    "url"
                ],
                "properties": {
                    "url": {
                        "type": "string",
                        "format": "uri",
                        "description": "The item page URL on the provider site",
                        "example": "https://www.storyblocks.com/video/stock/aerial-view-of-the-city-at-sunset-435871219"
                    },
                    "license": {
                        "type": "boolean",
                        "default": true,
                        "description": "Also return a license certificate link (paid plans; providers that issue one)"
                    },
                    "quality": {
                        "type": "string",
                        "description": "Storyblocks: a variant code from GET /resolve (e.g. 4KMP4, HDMP4, WAV, MP3, PNG, JPG). Default: best available.",
                        "example": "4KMP4"
                    }
                }
            },
            "Download": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string",
                        "example": "dl_3f9a1c2b7d4e"
                    },
                    "service": {
                        "type": "string",
                        "enum": [
                            "envato",
                            "storyblocks",
                            "vecteezy",
                            "motionarray",
                            "flaticon",
                            "freepik"
                        ]
                    },
                    "item": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "type": {
                                "type": "string"
                            },
                            "title": {
                                "type": "string",
                                "nullable": true
                            },
                            "filename": {
                                "type": "string"
                            },
                            "size": {
                                "type": "integer",
                                "nullable": true,
                                "description": "bytes (0 when the provider does not announce it; null for Flaticon / Magnific, which are resolved when download.url is fetched)"
                            },
                            "content_type": {
                                "type": "string"
                            },
                            "quality": {
                                "type": "string",
                                "description": "Storyblocks: the variant delivered"
                            },
                            "quality_label": {
                                "type": "string"
                            },
                            "variants": {
                                "type": "array",
                                "items": {
                                    "$ref": "#/components/schemas/Variant"
                                }
                            },
                            "format": {
                                "type": "string",
                                "nullable": true,
                                "description": "MotionArray footage / Flaticon / Magnific: the format delivered"
                            },
                            "format_label": {
                                "type": "string",
                                "description": "Magnific"
                            },
                            "formats": {
                                "type": "array",
                                "items": {
                                    "$ref": "#/components/schemas/Variant"
                                }
                            },
                            "pixel_size": {
                                "type": "integer",
                                "nullable": true,
                                "description": "Flaticon PNG / GIF / MP4: the size delivered"
                            },
                            "width": {
                                "type": "integer",
                                "nullable": true,
                                "description": "Magnific photos: delivered dimensions"
                            },
                            "height": {
                                "type": "integer",
                                "nullable": true
                            },
                            "pack": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                    "id": {
                                        "type": "string"
                                    },
                                    "name": {
                                        "type": "string"
                                    }
                                }
                            },
                            "preview_url": {
                                "type": "string",
                                "format": "uri",
                                "nullable": true
                            },
                            "slug": {
                                "type": "string",
                                "description": "Vecteezy"
                            },
                            "source_url": {
                                "type": "string",
                                "format": "uri"
                            }
                        }
                    },
                    "download": {
                        "type": "object",
                        "properties": {
                            "url": {
                                "type": "string",
                                "format": "uri",
                                "description": "Signed Stockzen link, valid 1 hour, re-fetchable"
                            },
                            "method": {
                                "type": "string"
                            },
                            "expires_at": {
                                "type": "string",
                                "format": "date-time"
                            },
                            "direct_url": {
                                "type": "string",
                                "format": "uri",
                                "nullable": true,
                                "description": "Envato only: Envato's own signed CDN link (fastest, ~10 minutes). Null for other providers."
                            },
                            "direct_expires_at": {
                                "type": "string",
                                "format": "date-time",
                                "nullable": true
                            }
                        }
                    },
                    "license": {
                        "type": "object",
                        "nullable": true,
                        "description": "Null when the provider bundles the license or on trial plans (see license_note)",
                        "properties": {
                            "url": {
                                "type": "string",
                                "format": "uri"
                            },
                            "format": {
                                "type": "string"
                            },
                            "licensee": {
                                "type": "string",
                                "nullable": true
                            },
                            "filename": {
                                "type": "string",
                                "nullable": true
                            },
                            "expires_at": {
                                "type": "string",
                                "format": "date-time"
                            }
                        }
                    },
                    "license_note": {
                        "type": "string",
                        "nullable": true
                    },
                    "usage": {
                        "$ref": "#/components/schemas/UsageRow"
                    }
                }
            }
        }
    },
    "x-rapidapi-plans": {
        "BASIC": {
            "name": "Basic",
            "price": 0,
            "quota": 5,
            "period": "day",
            "overage": null,
            "rpm": 1,
            "recommended": false
        },
        "PRO": {
            "name": "Pro",
            "price": 5.99,
            "quota": 200,
            "period": "month",
            "overage": 0.02,
            "rpm": 5,
            "recommended": false
        },
        "ULTRA": {
            "name": "Ultra",
            "price": 14.99,
            "quota": 800,
            "period": "month",
            "overage": 0.015,
            "rpm": 10,
            "recommended": true
        },
        "MEGA": {
            "name": "Mega",
            "price": 29.99,
            "quota": 2000,
            "period": "month",
            "overage": 0.01,
            "rpm": 15,
            "recommended": false
        }
    },
    "x-rapidapi-service": "storyblocks",
    "x-rapidapi-hub": "https://rapidapi.com/weirdoshubham/api/storyblocks-downloader"
}
