More free conversions, where you upload. The Fylane extension does the same work inside any upload form, on its own free share every day.About the extension
How to pdf metadata
- Drop the PDF.
- Type the properties you want to set.
- Press Save and download.
What happens to your file
Only the document information — the four fields readers show under Properties — is rewritten. Pages, text, bookmarks and form fields are not touched.
A field you leave empty keeps whatever the file already has; creation and modification dates and the producer are left as they are.
Questions
Why does the title matter?
Readers show it in the window and tab instead of the filename, search engines use it as the result’s heading, and screen readers announce it. A PDF exported from Word often carries the wrong one.
Does this remove hidden personal data?
No — it sets the visible properties. Comments, annotation authors and XMP metadata are not changed.
Related tools
Do this in code
curl -X POST https://api.fylane.dev/v1/jobs \
-H "Authorization: Bearer $FYLANE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file_id": "<file id>",
"operation": "pdf.set-metadata",
"options": {
"title": "Leave empty to keep the current one",
"keywords": "comma, separated"
}
}'The same operation, pdf.set-metadata — Title, author, subject, keywords — written as an incremental update. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.