Preview only — activation required

Build downloads with SaveTK

SaveTK displays an API plan for creator-tool integrations, but does not accept unauthenticated execution. Approval supplies both the key and its operating limits.

SaveTkCreatorJSON über HTTPSAsynchrone JobsAnmeldeinformationen mit Bereich
01

Schnellstart

SaveTK presents three practical points for API host. First comes support-activated credentials. The saving workflow then covers an assigned tenant endpoint. Its final point is a server-only call path.

Tenant-URLhttps://savetk.app
AuthentifizierungX-API-Key: pending_activation_…
Profil des KundenSaveTkCreator
API-Versionv1
# Available only after support activation
export SAVETK_CREATOR_KEY="issued-after-review"

curl -X POST https://savetk.app/v1/resolve \
  -H "X-API-Key: $SAVETK_CREATOR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"creator_link":"https://www.youtube.com/watch?v=VIDEO_ID"}'

SaveTK makes Credential safety easy to scan. The page starts with server-side secret storage, moves to no client bundle embedding, and clearly states no public logs or repositories.

02

Auflösen eines Links

SaveTK presents three practical points for Resolve operation. First comes source detection. The saving workflow then covers formats from one submitted URL. Its final point is no invented outputs.

Post/v1/resolveGeltungsbereich: resolve
FeldTypErforderlichBeschreibung
creator_linkHTTPS-URLJaÖffentliche oder autorisierte Medienseite zu analysieren.
tenantZeichenfolgeNeinZugewiesene Mandantendomäne. Normalerweise weggelassen.
{
  "success": true,
  "platform": "youtube",
  "title": "Example video",
  "formats": [
    {"id":"18","type":"video","quality":"360p","container":"mp4"}
  ],
  "cached": false
}

SaveTK makes Format identifier easy to scan. The page starts with the returned value unchanged, moves to per-link availability, and clearly states no guessed quality label.

03

Download-Auftrag erstellen und verfolgen

Job creation begins with asynchronous preparation on SaveTK. This saving workflow then presents a short HTTP request. The final fact is bounded worker execution.

Post/v1/jobsGeltungsbereich: Jobs
FeldTypErforderlichBeschreibung
creator_linkHTTPS-URLJaDie gleiche normalisierte Quelle, die zur Auflösung eingereicht wurde.
save_optionZeichenfolgeJaEine genaue ID aus der Auflösungsantwort.
tenantZeichenfolgeNeinZugewiesene Mandantendomäne. Normalerweise weggelassen.
curl -X POST https://savetk.app/v1/jobs \
  -H "X-API-Key: $SAVETK_CREATOR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"creator_link":"https://www.youtube.com/watch?v=VIDEO_ID","save_option":"18"}'
1202 AkzeptiertSave save_task.
2UmfragestatusGET /v1/jobs/{save_task} with the same key.
3BereitÖffnen Sie die signierte Download-URL.
StatusBedeutungClient-Action
queuedIn die begrenzte Warteschlange aufgenommen.Abstimmung nochmal mit Rückzug.
extractingAktualisierung von Quellmetadaten oder Route.Fahren Sie mit dem Abstimmen fort.
processingHerunterladen, Remuxen oder Zusammenführen.Serverfortschritt anzeigen.
readySignierter Download ist verfügbar.Senden Sie die URL an den Benutzer.
failedTerminal strukturierter Fehler.Read error_code. Retry only when advised.
expiredTemporäre Ausgabe wurde entfernt.Erstellen Sie einen neuen Job.
curl https://savetk.app/v1/jobs/SAVE_TASK \
  -H "X-API-Key: $SAVETK_CREATOR_KEY"

SaveTK handles Job polling by first identifying one-second initial wait. It follows with capped backoff and keeps temporary signed delivery in view.

04

Vorhersehbare Fehler

Error contract starts with one non-2xx envelope on SaveTK. The next view covers a support request ID. The page keeps predictable client handling visible.

{
  "success": false,
  "error": {
    "code": "RATE_LIMITED",
    "category": "rate_limited",
    "message": "Too many requests. Please try again shortly.",
    "retryable": true,
    "details": {"retry_after_seconds": 20}
  },
  "request_id": "…"
}
HTTPTypische BedeutungAction
400Ungültige URL, ungültiger Text oder unzugängliches Format.Korrigieren Sie die Anfrage. Lösen Sie erneut für Formate auf.
401Fehlender, ungültiger, abgelaufener oder falscher Schlüsselbereich.Überprüfen Sie die serverseitigen Anmeldeinformationen.
403Die Anforderung wurde von der Mandanten- oder Quellenrichtlinie abgelehnt.Umgehen Sie die Richtlinie nicht. Wenden Sie sich an den Support.
404Unbekannter oder abgelaufener Job.Erstellen Sie ggf. einen neuen Auftrag.
429Anfrage- oder Aktiv-Job-Limit erreicht.Honor retry_after_seconds.
503Warteschlange/Kapazität oder Upstream vorübergehend nicht verfügbar.Wiederholen Sie den Versuch mit exponentiellem Rückschlag und Jitter.
05

Betriebsvertrag

SaveTK sets creator-workflow allowances after examining expected traffic and the posting platforms in scope.

SaveTK presents three practical points for Schema access. First comes activation before exploration. The saving workflow then covers assigned authentication. Its final point is documented request shapes.

VOM BETRIEBSERHALTER ÜBERPRÜFTER ZUGANG

Activate through support

State what the SaveTK client does, how many calls it expects and which posting services are essential. The support review selects its scopes, then returns a non-recoverable credential shown a single time.

Request activation Schlüssel sind mandantenspezifisch, widerrufbar und werden über das Kontaktformular ausgestellt. Anonyme Skripte können keine Downloader-Arbeit ausführen.