← 返回
开发者工具 Key 中文

Add watermark to PDF

Add a text watermark to one or multiple PDFs by uploading them to the Solutions API, polling until completion, then returning download URL(s) for the watermarked PDF(s) (or a ZIP if multiple).
通过上传至Solutions API为单个或多个PDF添加文本水印,轮询至处理完成后,返回带水印PDF的下载链接(多个文件时返回ZIP包)。
crossservicesolutions
开发者工具 clawhub v1.0.0 1 版本 99816.4 Key: 需要
★ 0
Stars
📥 1,631
下载
💾 33
安装
1
版本
#latest

概述

add-watermark-to-pdf

Purpose

This skill adds a text watermark to one or multiple PDFs by:

1) accepting one or multiple PDF files from the user,

2) accepting a watermark text string,

3) uploading them to the Solutions API,

4) polling the job status until it is finished,

5) returning download URL(s) for the resulting file(s).

If multiple PDFs are processed, the output may include multiple PDFs and/or a ZIP for download.

Credentials

The API requires an API key used as a Bearer token:

  • Authorization: Bearer

How the user gets an API key:

  • https://login.cross-service-solutions.com/register
  • Or the user can provide an API key directly.

Rule: never echo or log the API key.

API endpoints

Base URL:

  • https://api.xss-cross-service-solutions.com/solutions/solutions

Create watermark job:

  • POST /api/61
  • multipart/form-data parameters:
  • files — required — multiple PDF files (multiple_files)
  • text — required — string (watermark text)

Get result by ID:

  • GET /api/

When done, the response contains:

  • output.files[] with { name, path } where path is a downloadable URL (PDFs and/or ZIP).

Inputs

Required

  • One or more PDF files (binary)
  • Watermark text (text, string)
  • API key (string)

Optional

  • None

Output

Return a structured result:

  • job_id (number)
  • status (string)
  • outputs (array) containing { name, path } for each output file
  • Convenience fields:
  • download_url (string) if exactly one output exists
  • download_urls (array of strings) for all outputs
  • input_files (array of strings)
  • watermark_text (string) — returned only if safe; do not return if user considers it sensitive

Example output:

{
  "job_id": 6101,
  "status": "done",
  "outputs": [
    { "name": "watermarked.pdf", "path": "https://.../watermarked.pdf" }
  ],
  "download_url": "https://.../watermarked.pdf",
  "download_urls": ["https://.../watermarked.pdf"],
  "input_files": ["input.pdf"]
}

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 23:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Compress PDF

crossservicesolutions
通过将用户提供的 PDF 上传至 Cross‑Service‑Solutions 进行压缩,轮询直至完成,随后返回压缩文件的下载链接。
★ 1 📥 2,389
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,295
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 670 📥 324,287