Screenshot Platform

端到端上手

从注册到第一张截图的完整流程。

注册账号

访问 注册页 创建账号并登录控制台。

创建 API Key

打开 API Keys,点击创建并复制完整密钥。

调用 /take

curl "http://localhost:3200/take?url=https://example.com&access_key=YOUR_KEY" -o out.png
const res = await fetch(
  'http://localhost:3200/take?url=' + encodeURIComponent('https://example.com'),
  { headers: { Authorization: 'Bearer YOUR_KEY' } },
);
import requests
requests.get('http://localhost:3200/take', params={
  'url': 'https://example.com',
  'access_key': 'YOUR_KEY',
}).content

查看用量

概览 或调用 GET /v1/usage 查看本月配额,详见 用量 API

On this page