{"openapi":"3.0.0","info":{"title":"V1.Media API","description":"API for V1.Media - Hong Kong Corporate Video Production Company","version":"1.0.0","contact":{"name":"V1.Media","email":"info@v1.media","url":"https://v1videoproduction.com"}},"servers":[{"url":"https://v1videoproduction.com","description":"Production server"}],"paths":{"/api/videos":{"get":{"summary":"Get all video portfolio items","description":"Retrieves a list of all corporate video projects in the portfolio","operationId":"getVideos","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Video"}}}}}}}},"/api/services":{"get":{"summary":"Get all services","description":"Retrieves a list of all video production services offered","operationId":"getServices","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Service"}}}}}}}},"/api/testimonials":{"get":{"summary":"Get client testimonials","description":"Retrieves client testimonials and reviews","operationId":"getTestimonials","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Testimonial"}}}}}}}},"/api/contact":{"post":{"summary":"Submit contact form","description":"Submit an inquiry or project request","operationId":"submitContact","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ContactForm"}}}},"responses":{"200":{"description":"Message sent successfully"}}}}},"components":{"schemas":{"Video":{"type":"object","properties":{"id":{"type":"integer"},"title":{"type":"string"},"slug":{"type":"string"},"description":{"type":"string"},"thumbnail_url":{"type":"string"},"video_url":{"type":"string"},"client":{"type":"string"},"industry":{"type":"string"},"published_date":{"type":"string","format":"date"}}},"Service":{"type":"object","properties":{"id":{"type":"integer"},"name":{"type":"string"},"slug":{"type":"string"},"description":{"type":"string"},"features":{"type":"array","items":{"type":"string"}}}},"Testimonial":{"type":"object","properties":{"id":{"type":"integer"},"client_name":{"type":"string"},"company":{"type":"string"},"content":{"type":"string"},"rating":{"type":"integer"}}},"ContactForm":{"type":"object","required":["name","email","message"],"properties":{"name":{"type":"string"},"email":{"type":"string","format":"email"},"phone":{"type":"string"},"company":{"type":"string"},"message":{"type":"string"},"project_type":{"type":"string"}}}}}}