{"openapi":"3.1.0","info":{"title":"ParseBuddy API","version":"1.0.0","description":"Upload business documents and retrieve structured extraction results."},"servers":[{"url":"https:\/\/parsebuddy.com\/api"}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"pb_live_*"}},"schemas":{"Document":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"status":{"type":"string","enum":["queued","processing","completed","review","failed","blocked"]},"filename":{"type":"string"},"page_count":{"type":"integer"},"confidence":{"type":["number","null"]},"extracted_data":{"type":["object","null"],"additionalProperties":true}},"required":["id","status","filename","page_count"]}}},"security":[{"bearerAuth":[]}],"paths":{"\/v1\/documents":{"post":{"summary":"Upload a document","requestBody":{"required":true,"content":{"multipart\/form-data":{"schema":{"type":"object","properties":{"document":{"type":"string","format":"binary"},"mailbox_id":{"type":"integer"},"parser_schema_id":{"type":"integer"}},"required":["document"]}}}},"responses":{"202":{"description":"Document accepted","content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Document"}}}},"401":{"description":"Invalid API key"},"422":{"description":"Invalid document"}}}},"\/v1\/documents\/{document}":{"get":{"summary":"Get document status and results","parameters":[{"name":"document","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"Document result","content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/Document"}}}},"404":{"description":"Document not found"}}}}}}