# API UPLOAD ROUTES AyaNova has several API routes for uploading files. These routes are all `POST` routes: - `/api/v{version}/Attachment` - `/api/v{version}/ImportAyaNova7` - `/api/v{version}/Restore` Upload routes are not testable from the API explorer. Upload routes expect a form to be uploaded with file content disposition (multipart/form-data). AyaNova will allow a maximum of 12gb per file upload for "Utility" routes such as restore and import routes. User file routes such as attachments may have a smaller limit, see the User documentation section for those features for limit details. Here is a sample minimal HTML form that works with AyaNova file routes: ```html
```