{"openapi":"3.1.0","info":{"title":"Driftflight API","version":"2.4.0","description":"Text-to-image generation with style presets. Authenticate every request with your API key as a Bearer token. Create an account and choose a plan at https://driftflight.com to get a key."},"servers":[{"url":"https://api.driftflight.com"}],"components":{"securitySchemes":{"apiKey":{"type":"http","scheme":"bearer","description":"Your Driftflight API key (df_live_...). Keys are issued on the dashboard after subscribing to a plan."}}},"paths":{"/v1/presets":{"get":{"summary":"List style presets","responses":{"200":{"description":"Preset list."}}}},"/v1/models":{"get":{"summary":"List model tiers","responses":{"200":{"description":"Model tiers."}}}},"/v1/images/generate":{"post":{"summary":"Generate an image from a text prompt","security":[{"apiKey":[]}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","required":["prompt"],"properties":{"prompt":{"type":"string"},"preset":{"type":"string","enum":["editorial","product-studio","film-noir","botanical","watercolor","isometric"]},"model":{"enum":["sketch","studio","gallery"]}}}}}},"responses":{"200":{"description":"Image generated; hosted URL returned."},"401":{"description":"Missing or invalid API key. Subscribe at https://driftflight.com to get one."},"429":{"description":"Plan generation allowance exhausted."}}}}}}