{"openapi":"3.0.3","info":{"title":"SuperConverter API","description":"File conversion API for images, PDFs, video, audio, and AI-powered tools. Use this API to automate file conversions in n8n, Zapier, Make, or any other automation platform.","version":"1.0.0","contact":{"name":"SuperConverter Support","url":"https://superconverter.io","email":"support@superconverter.io"},"license":{"name":"Proprietary","url":"https://superconverter.io/terms"}},"servers":[{"url":"https://api.superconverter.io","description":"Production API"}],"security":[{"BearerAuth":[]}],"tags":[{"name":"Account","description":"Account and usage information"},{"name":"Image","description":"Image conversion and manipulation"},{"name":"Document","description":"PDF and document operations"},{"name":"Video","description":"Video conversion and editing"},{"name":"Audio","description":"Audio conversion and editing"},{"name":"Text","description":"Text and OCR operations"},{"name":"Developer","description":"Developer utilities"},{"name":"AI","description":"AI-powered tools (premium)"}],"paths":{"/v1/account":{"get":{"tags":["Account"],"summary":"Get account info","description":"Returns your account information including credit balance and usage","operationId":"getAccount","responses":{"200":{"description":"Account information","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountInfo"}}}},"401":{"description":"Unauthorized"}}}},"/v1/endpoints":{"get":{"tags":["Account"],"summary":"List available endpoints","description":"Returns all available conversion endpoints with their credit costs","operationId":"getEndpoints","responses":{"200":{"description":"List of endpoints","content":{"application/json":{"schema":{"type":"object","properties":{"endpoints":{"type":"array","items":{"$ref":"#/components/schemas/Endpoint"}}}}}}}}}},"/v1/pricing":{"get":{"tags":["Account"],"summary":"Get pricing info","description":"Returns credit packages and pricing information","operationId":"getPricing","security":[],"responses":{"200":{"description":"Pricing information","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PricingInfo"}}}}}}},"/v1/heic-to-jpg":{"post":{"tags":["Image"],"summary":"Convert HEIC to JPG","description":"Convert iPhone HEIC/HEIF photos to JPG format","operationId":"heicToJpg","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"HEIC or HEIF image file"},"quality":{"type":"integer","minimum":1,"maximum":100,"default":90,"description":"Output JPEG quality (1-100)"}}}}}},"responses":{"200":{"description":"Converted JPG image","content":{"image/jpeg":{"schema":{"type":"string","format":"binary"}}}},"400":{"$ref":"#/components/responses/BadRequest"},"413":{"$ref":"#/components/responses/FileTooLarge"}}}},"/v1/compress-image":{"post":{"tags":["Image"],"summary":"Compress image","description":"Reduce image file size while maintaining quality","operationId":"compressImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file (JPG, PNG, WebP)"},"quality":{"type":"integer","minimum":1,"maximum":100,"default":80,"description":"Output quality (1-100)"},"format":{"type":"string","enum":["jpg","png","webp"],"description":"Output format (default: same as input)"}}}}}},"responses":{"200":{"description":"Compressed image","content":{"image/*":{"schema":{"type":"string","format":"binary"}}}},"400":{"$ref":"#/components/responses/BadRequest"}}}},"/v1/resize-image":{"post":{"tags":["Image"],"summary":"Resize image","description":"Change the dimensions of an image","operationId":"resizeImage","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file"},"width":{"type":"integer","minimum":1,"maximum":10000,"description":"Target width in pixels"},"height":{"type":"integer","minimum":1,"maximum":10000,"description":"Target height in pixels"},"fit":{"type":"string","enum":["cover","contain","fill","inside","outside"],"default":"cover","description":"How to fit the image"}}}}}},"responses":{"200":{"description":"Resized image","content":{"image/*":{"schema":{"type":"string","format":"binary"}}}}}}},"/v1/webp-converter":{"post":{"tags":["Image"],"summary":"Convert to/from WebP","description":"Convert images to or from WebP format","operationId":"webpConverter","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file (JPG, PNG, or WebP)"},"format":{"type":"string","enum":["webp","jpg","png"],"default":"webp","description":"Output format"},"quality":{"type":"integer","minimum":1,"maximum":100,"default":85,"description":"Output quality"}}}}}},"responses":{"200":{"description":"Converted image","content":{"image/*":{"schema":{"type":"string","format":"binary"}}}}}}},"/v1/images-to-pdf":{"post":{"tags":["Document"],"summary":"Images to PDF","description":"Combine multiple images into a single PDF document","operationId":"imagesToPdf","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["files"],"properties":{"files":{"type":"array","items":{"type":"string","format":"binary"},"description":"Image files to combine"},"pageSize":{"type":"string","enum":["a4","letter","fit"],"default":"a4","description":"PDF page size"}}}}}},"responses":{"200":{"description":"Generated PDF","content":{"application/pdf":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/compress-pdf":{"post":{"tags":["Document"],"summary":"Compress PDF","description":"Reduce PDF file size for email or upload","operationId":"compressPdf","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"PDF file (max 50MB)"},"level":{"type":"string","enum":["screen","ebook","printer","prepress"],"default":"ebook","description":"Compression level: screen (lowest quality), ebook (medium), printer (high), prepress (highest)"}}}}}},"responses":{"200":{"description":"Compressed PDF","headers":{"X-Original-Size":{"schema":{"type":"integer"},"description":"Original file size in bytes"},"X-Compressed-Size":{"schema":{"type":"integer"},"description":"Compressed file size in bytes"}},"content":{"application/pdf":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/pdf-to-images":{"post":{"tags":["Document"],"summary":"PDF to Images","description":"Convert PDF pages to images. Returns single image or ZIP for multiple pages.","operationId":"pdfToImages","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"PDF file (max 20MB)"},"format":{"type":"string","enum":["png","jpeg"],"default":"png","description":"Output image format"},"dpi":{"type":"integer","minimum":72,"maximum":300,"default":150,"description":"Output resolution"},"page":{"type":"integer","minimum":1,"description":"Specific page number (optional)"}}}}}},"responses":{"200":{"description":"Image(s) - single image or ZIP for multiple pages","headers":{"X-Page-Count":{"schema":{"type":"integer"},"description":"Number of pages converted"}},"content":{"image/png":{"schema":{"type":"string","format":"binary"}},"image/jpeg":{"schema":{"type":"string","format":"binary"}},"application/zip":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/mp4-to-gif":{"post":{"tags":["Video"],"summary":"MP4 to GIF","description":"Convert video to animated GIF","operationId":"mp4ToGif","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Video file (MP4, WebM, MOV - max 50MB)"},"fps":{"type":"integer","minimum":5,"maximum":30,"default":10,"description":"Frames per second"},"width":{"type":"integer","minimum":200,"maximum":800,"default":480,"description":"Output width in pixels"},"start":{"type":"number","minimum":0,"default":0,"description":"Start time in seconds"},"duration":{"type":"number","minimum":0.5,"maximum":15,"default":5,"description":"Duration in seconds (max 15)"}}}}}},"responses":{"200":{"description":"Animated GIF","content":{"image/gif":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/gif-to-mp4":{"post":{"tags":["Video"],"summary":"GIF to MP4","description":"Convert animated GIF to MP4 video","operationId":"gifToMp4","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"GIF file (max 20MB)"}}}}}},"responses":{"200":{"description":"MP4 video","content":{"video/mp4":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/compress-video":{"post":{"tags":["Video"],"summary":"Compress video","description":"Reduce video file size for WhatsApp, email, etc.","operationId":"compressVideo","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Video file (max 100MB)"},"quality":{"type":"string","enum":["low","medium","high"],"default":"medium","description":"Quality preset"},"maxWidth":{"type":"integer","default":1280,"description":"Maximum output width"}}}}}},"responses":{"200":{"description":"Compressed video","content":{"video/mp4":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/video-trim":{"post":{"tags":["Video"],"summary":"Trim video","description":"Cut a portion from a video","operationId":"videoTrim","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file","start","end"],"properties":{"file":{"type":"string","format":"binary","description":"Video file (max 100MB)"},"start":{"type":"number","minimum":0,"description":"Start time in seconds"},"end":{"type":"number","description":"End time in seconds (max 5 min duration)"}}}}}},"responses":{"200":{"description":"Trimmed video","content":{"video/mp4":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/video-crop":{"post":{"tags":["Video"],"summary":"Crop video","description":"Crop video to different aspect ratios","operationId":"videoCrop","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Video file (max 100MB)"},"preset":{"type":"string","enum":["16:9","9:16","1:1","4:5","4:3"],"default":"16:9","description":"Aspect ratio preset"}}}}}},"responses":{"200":{"description":"Cropped video","content":{"video/mp4":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/extract-audio":{"post":{"tags":["Audio"],"summary":"Extract audio from video","description":"Extract audio track from a video file","operationId":"extractAudio","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Video file (max 100MB)"},"format":{"type":"string","enum":["mp3","wav","aac"],"default":"mp3","description":"Output audio format"}}}}}},"responses":{"200":{"description":"Audio file","content":{"audio/mpeg":{"schema":{"type":"string","format":"binary"}},"audio/wav":{"schema":{"type":"string","format":"binary"}},"audio/aac":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/audio-convert":{"post":{"tags":["Audio"],"summary":"Convert audio format","description":"Convert between audio formats","operationId":"audioConvert","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Audio file (max 50MB)"},"format":{"type":"string","enum":["mp3","wav","flac","aac","ogg"],"default":"mp3","description":"Output format"}}}}}},"responses":{"200":{"description":"Converted audio","content":{"audio/*":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/audio-trim":{"post":{"tags":["Audio"],"summary":"Trim audio","description":"Cut a portion from an audio file","operationId":"audioTrim","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file","start","end"],"properties":{"file":{"type":"string","format":"binary","description":"Audio file (max 50MB)"},"start":{"type":"number","minimum":0,"description":"Start time in seconds"},"end":{"type":"number","description":"End time in seconds (max 10 min duration)"},"format":{"type":"string","enum":["mp3","wav","flac","aac","ogg"],"description":"Output format (default: same as input)"}}}}}},"responses":{"200":{"description":"Trimmed audio","content":{"audio/*":{"schema":{"type":"string","format":"binary"}}}}}}},"/convert/ocr":{"post":{"tags":["Text"],"summary":"OCR - Image to text","description":"Extract text from images using Tesseract OCR","operationId":"ocr","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file (max 10MB)"},"lang":{"type":"string","enum":["eng","nld","deu","fra"],"default":"eng","description":"Language for OCR"}}}}}},"responses":{"200":{"description":"Extracted text","content":{"application/json":{"schema":{"type":"object","properties":{"text":{"type":"string","description":"Extracted text"},"language":{"type":"string"}}}}}}}}},"/convert/remove-background":{"post":{"tags":["AI"],"summary":"Remove background","description":"AI-powered background removal from images","operationId":"removeBackground","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file (max 10MB)"}}}}}},"responses":{"200":{"description":"Image with transparent background","content":{"image/png":{"schema":{"type":"string","format":"binary"}}}}}}},"/v1/qr-generator":{"post":{"tags":["Developer"],"summary":"Generate QR code","description":"Create QR codes from text, URLs, or contact info","operationId":"qrGenerator","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["data"],"properties":{"data":{"type":"string","description":"Data to encode (URL, text, vCard, etc.)"},"size":{"type":"integer","minimum":100,"maximum":1000,"default":300,"description":"QR code size in pixels"},"format":{"type":"string","enum":["png","svg"],"default":"png"}}}}}},"responses":{"200":{"description":"QR code image","content":{"image/png":{"schema":{"type":"string","format":"binary"}},"image/svg+xml":{"schema":{"type":"string","format":"binary"}}}}}}},"/v1/base64":{"post":{"tags":["Developer"],"summary":"Base64 encode/decode","description":"Encode or decode Base64 data","operationId":"base64","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["data","action"],"properties":{"data":{"type":"string","description":"Data to encode/decode"},"action":{"type":"string","enum":["encode","decode"],"description":"Action to perform"}}}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"type":"object","properties":{"result":{"type":"string"}}}}}}}}},"/v1/url-encode":{"post":{"tags":["Developer"],"summary":"URL encode/decode","description":"Encode or decode URL characters","operationId":"urlEncode","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["data","action"],"properties":{"data":{"type":"string","description":"Data to encode/decode"},"action":{"type":"string","enum":["encode","decode"],"description":"Action to perform"}}}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"type":"object","properties":{"result":{"type":"string"}}}}}}}}},"/v1/text-cleaner":{"post":{"tags":["Developer"],"summary":"Clean text","description":"Remove extra spaces, HTML tags, and formatting","operationId":"textCleaner","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["text"],"properties":{"text":{"type":"string","description":"Text to clean"},"options":{"type":"object","properties":{"removeHtml":{"type":"boolean","default":true},"normalizeSpaces":{"type":"boolean","default":true},"trimLines":{"type":"boolean","default":true}}}}}}}},"responses":{"200":{"description":"Cleaned text","content":{"application/json":{"schema":{"type":"object","properties":{"result":{"type":"string"}}}}}}}}},"/v1/minify-js":{"post":{"tags":["Developer"],"summary":"Minify JavaScript","description":"Compress JavaScript code for production","operationId":"minifyJs","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["code"],"properties":{"code":{"type":"string","description":"JavaScript code to minify"}}}}}},"responses":{"200":{"description":"Minified code","content":{"application/json":{"schema":{"type":"object","properties":{"result":{"type":"string"},"originalSize":{"type":"integer"},"minifiedSize":{"type":"integer"},"savings":{"type":"string"}}}}}}}}},"/ai/image-describe":{"post":{"tags":["AI"],"summary":"AI Image Description","description":"Generate alt-text, captions, or social media descriptions with AI","operationId":"imageDescribe","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file"},"style":{"type":"string","enum":["alt-text","detailed","social"],"default":"alt-text","description":"Description style"}}}}}},"responses":{"200":{"description":"AI-generated description","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"},"description":{"type":"string"},"style":{"type":"string"},"credits_used":{"type":"integer"}}}}}}}}},"/ai/invoice-scan":{"post":{"tags":["AI"],"summary":"AI Invoice Scanner","description":"Extract data from invoices and receipts automatically","operationId":"invoiceScan","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Invoice or receipt image"},"type":{"type":"string","enum":["invoice","receipt"],"default":"invoice"}}}}}},"responses":{"200":{"description":"Extracted invoice data","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"},"type":{"type":"string"},"data":{"type":"object","description":"Structured invoice/receipt data"},"credits_used":{"type":"integer"}}}}}}}}},"/ai/sentiment":{"post":{"tags":["AI"],"summary":"Sentiment Analysis","description":"Analyze text sentiment and emotions with AI","operationId":"sentimentAnalysis","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["text"],"properties":{"text":{"type":"string","minLength":10,"maxLength":10000,"description":"Text to analyze"}}}}}},"responses":{"200":{"description":"Sentiment analysis results","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SentimentResult"}}}}}}},"/ai/handwriting-ocr":{"post":{"tags":["AI"],"summary":"AI Handwriting to Text","description":"Convert handwritten notes to digital text using AI","operationId":"handwritingOcr","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image of handwritten text"}}}}}},"responses":{"200":{"description":"Transcribed text","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"},"text":{"type":"string"},"credits_used":{"type":"integer"}}}}}}}}},"/ai/smart-rename":{"post":{"tags":["AI"],"summary":"AI Smart Rename","description":"Auto-rename images based on their content","operationId":"smartRename","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary","description":"Image file"},"style":{"type":"string","enum":["descriptive","dated","seo"],"default":"descriptive","description":"Naming style"}}}}}},"responses":{"200":{"description":"Suggested filename","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"},"original_name":{"type":"string"},"suggested_name":{"type":"string"},"style":{"type":"string"},"credits_used":{"type":"integer"}}}}}}}}},"/tools":{"get":{"tags":["Account"],"summary":"List all tools","description":"Get a list of all available conversion tools","operationId":"getTools","security":[],"responses":{"200":{"description":"List of tools","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ToolsList"}}}}}}},"/tools/{id}":{"get":{"tags":["Account"],"summary":"Get tool info","description":"Get information about a specific tool","operationId":"getTool","security":[],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Tool ID (e.g., heic-to-jpg, compress-image)"}],"responses":{"200":{"description":"Tool information","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Tool"}}}},"404":{"description":"Tool not found"}}}}},"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","description":"API key in Bearer token format"}},"schemas":{"AccountInfo":{"type":"object","properties":{"user_id":{"type":"string"},"is_free_tier":{"type":"boolean"},"api_key":{"type":"object","properties":{"prefix":{"type":"string"},"name":{"type":"string"},"allowed_endpoints":{"type":"array","items":{"type":"string"}},"created_at":{"type":"string"},"last_used_at":{"type":"string"}}},"credits":{"type":"object","properties":{"balance":{"type":"integer"},"total_purchased":{"type":"integer"},"total_used":{"type":"integer"}}},"free_tier":{"type":"object","properties":{"daily_conversions":{"type":"object","properties":{"used":{"type":"integer"},"limit":{"type":"integer"},"remaining":{"type":"integer"}}},"resets_at":{"type":"string","format":"date-time"}}}}},"Endpoint":{"type":"object","properties":{"id":{"type":"string"},"enabled":{"type":"boolean"},"path":{"type":"string"},"credits":{"type":"object","properties":{"base":{"type":"integer"},"note":{"type":"string"}}}}},"PricingInfo":{"type":"object","properties":{"free_tier":{"type":"object","properties":{"daily_conversions":{"type":"integer"},"daily_credits":{"type":"integer"},"max_file_size_mb":{"type":"integer"}}},"packages":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"credits":{"type":"integer"},"price_cents":{"type":"integer"},"price_per_credit":{"type":"number"}}}},"credit_costs":{"type":"object"}}},"Tool":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"inputFormats":{"type":"array","items":{"type":"string"}},"outputFormats":{"type":"array","items":{"type":"string"}},"url":{"type":"string"},"apiEndpoint":{"type":"string"},"isAI":{"type":"boolean"},"isPremium":{"type":"boolean"}}},"ToolsList":{"type":"object","properties":{"version":{"type":"string"},"totalTools":{"type":"integer"},"categories":{"type":"array","items":{"type":"string"}},"tools":{"type":"array","items":{"$ref":"#/components/schemas/Tool"}},"byCategory":{"type":"object"},"links":{"type":"object","properties":{"documentation":{"type":"string"},"pricing":{"type":"string"},"apiBase":{"type":"string"}}}}},"SentimentResult":{"type":"object","properties":{"overall":{"type":"string","enum":["positive","negative","neutral","mixed"]},"score":{"type":"number","minimum":-1,"maximum":1},"confidence":{"type":"number","minimum":0,"maximum":1},"emotions":{"type":"object","properties":{"joy":{"type":"number"},"sadness":{"type":"number"},"anger":{"type":"number"},"fear":{"type":"number"},"surprise":{"type":"number"}}},"summary":{"type":"string"},"keywords":{"type":"array","items":{"type":"object","properties":{"word":{"type":"string"},"sentiment":{"type":"string"}}}},"credits_used":{"type":"integer"}}},"Error":{"type":"object","properties":{"error":{"type":"string"},"code":{"type":"string"}}}},"responses":{"BadRequest":{"description":"Bad request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"FileTooLarge":{"description":"File too large","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string"},"code":{"type":"string","example":"FILE_TOO_LARGE"},"max_size_mb":{"type":"number"},"your_size_mb":{"type":"number"}}}}}}}}}