remove-metadata-from-pdf
✓Verified·Scanned 2/17/2026
This skill uploads user PDFs to https://api.xss-cross-service-solutions.com/solutions/solutions, polls a job until completion, and returns cleaned file download URL(s). It requires an API key via SOLUTIONS_API_KEY or --api-key and includes a python scripts/remove_metadata_from_pdf.py CLI example.
from clawhub.ai·v4e2c8cb·12.5 KB·0 installs
Scanned from 1.0.0 at 4e2c8cb · Transparency log ↗
$ vett add clawhub.ai/crossservicesolutions/remove-metadata-from-pdf
README.md
# remove-metadata-from-pdf (OpenClaw Skill)
Remove metadata from one or multiple PDFs using the Solutions API and return download URL(s).
If multiple PDFs are processed, the API may also provide a ZIP file.
## What you need
- 1+ PDF file(s)
- A Solutions API key (Bearer token)
- Register / get key: https://login.cross-service-solutions.com/register
## How it works
1) Upload PDFs to:
`POST https://api.xss-cross-service-solutions.com/solutions/solutions/api/40`
2) Poll:
`GET https://api.xss-cross-service-solutions.com/solutions/solutions/api/<job_id>`
3) Return `output.files[].path` as download URL(s)
## Script (CLI)
```bash
python scripts/remove_metadata_from_pdf.py \
--pdf "/path/to/a.pdf" \
--pdf "/path/to/b.pdf" \
--api-key "$SOLUTIONS_API_KEY"