alltools.one機能へのプログラムアクセス。REST APIでスニペットを管理し、データを共有し、履歴を追跡します。
https://api.alltools.onePull your team's saved JSON / YAML / CSV formatter configs in GitHub Actions or GitLab CI to keep builds consistent.
# .github/workflows/validate.yml
- name: Fetch saved formatter config
run: |
curl -sf "https://api.alltools.one/api/snippets?tool=json-formatter&limit=1" \
-H "X-API-Key: ${{ secrets.ALLTOOLS_API_KEY }}" | jq '.snippets[0].data'When your automation workflow produces a formatted CSV or JSON, POST it directly as a named snippet for later retrieval.
curl -X POST https://api.alltools.one/api/snippets \
-H "X-API-Key: ato_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"tool": "csv-formatter",
"title": "Daily Report 2025-01-15",
"data": { "csv": "name,value\nAlice,42\nBob,99" },
"tags": ["automated", "daily"]
}'Create a shareable link for any formatted output — useful for embedding live data previews in Notion, Slack, or documentation.
curl -X POST https://api.alltools.one/api/shares \
-H "X-API-Key: ato_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"tool": "json-formatter",
"title": "API Response Sample",
"data": { "input": "{\"status\":\"ok\",\"result\":42}" }
}'
# Returns: { "share_url": "https://alltools.one/share/abc123def4", "id": "abc123def4" }ほとんどのエンドポイントは、Firebase JWTトークンまたはAPIキーによる認証が必要です。
Firebase Authでトークンを取得し、Authorizationヘッダーに含めます:
curl https://api.alltools.one/api/auth/profile \
-H "Authorization: Bearer <firebase_id_token>"ProユーザーはダッシュボードからAPIキーを作成できます。X-API-Keyヘッダーにキーを含めます:
curl https://api.alltools.one/api/snippets \
-H "X-API-Key: ato_your_key_here"ツール出力を保存・管理します。無料ユーザーは最大5つのスニペットを保存できます。Proユーザーは無制限に保存できます。
ツールデータの共有リンクを作成します。無料共有は30日後に期限切れ(最大5MB)。Pro共有は期限なし(最大50MB)。
ツール使用状況を追跡します。無料ユーザー: 最新20件。Proユーザー: 無制限の履歴。
プログラマティックAPIキーを管理します。Proプランが必要です。ユーザーあたり最大5つのキー。
Razorpay連携でProサブスクリプションを管理します。
| コード | 意味 | 一般的な原因 |
|---|---|---|
200 | OK | Request succeeded |
201 | Created | Resource created |
400 | Bad Request | Validation error or malformed input |
401 | Unauthorized | Missing or invalid auth token |
403 | Forbidden | Pro plan required or not the resource owner |
404 | Not Found | Resource does not exist |
409 | Conflict | Duplicate resource (e.g. email already subscribed) |
410 | Gone | Share link has expired |
413 | Payload Too Large | Data exceeds size limit (5MB free / 50MB pro) |
429 | Too Many Requests | Rate limit exceeded |
Proプランでご利用いただけます。リクエストはAPIキーごとに追跡されます。
IPアドレスあたり60秒に5リクエスト。
| 機能 | 無料 | Pro |
|---|---|---|
| 保存スニペット | 15 | 無制限 |
| 履歴エントリ | 20 | 無制限 |
| 最大共有サイズ | 5 MB | 50 MB |
| 共有の有効期限 | Never | なし |
| APIリクエスト | — | Unlimited (fair use) |
| APIキー | 0 | 5 |