REST · OpenAPI · ohne SDK

ProxyCove API

Proxys mit einfachen HTTP-Anfragen kaufen und verwalten. Kein SDK, keine Registrierung auf der Website: Konto und Schlüssel entstehen mit einer einzigen Anfrage.

https://proxycove.com/api/v1

Erste Schritte

1

Schlüssel holen

Eine Anfrage — und Sie haben ein Konto und einen Schlüssel der Form pc_live_… Der Schlüssel wird nur einmal angezeigt.

2

Guthaben aufladen

Eine Anfrage liefert einen Zahlungslink. Bezahlt wird immer von einem Menschen im Browser.

3

Proxys kaufen

Sobald das Guthaben gutgeschrieben ist, liefert der Kauf fertige Zugangsdaten.

Authentifizierung

Der Schlüssel wird als Header übergeben. Ohne ihn sind nur Preise, Länderliste und Kontoerstellung verfügbar.

Authorization: Bearer pc_live_YOUR_KEY

Methodenreferenz

GET/pricingPreis pro GBSchlüssel: nicht nötig
curl https://proxycove.com/api/v1/pricing
GET/locationsVerfügbare LänderSchlüssel: nicht nötig

type = residential | mobile | datacenter

curl "https://proxycove.com/api/v1/locations?type=residential"
POST/accountsKonto anlegen, Schlüssel erhaltenSchlüssel: nicht nötig

label, contact_email — optional

curl -X POST https://proxycove.com/api/v1/accounts \
  -H "Content-Type: application/json" \
  -d '{"label":"my project"}'
GET/accountGuthaben und KontodatenSchlüssel: nötig
curl https://proxycove.com/api/v1/account -H "Authorization: Bearer pc_live_YOUR_KEY"
POST/topupZahlungslink für den MenschenSchlüssel: nötig

amount_usd ≥ 1.5 · method = sbp | card_ru | crypto | card_international | crypto_cryptomus

curl -X POST https://proxycove.com/api/v1/topup \
  -H "Authorization: Bearer pc_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"amount_usd":20,"method":"sbp"}'
GET/payments/{id}ZahlungsstatusSchlüssel: nötig

pending | paid | cancelled

curl https://proxycove.com/api/v1/payments/ID -H "Authorization: Bearer pc_live_YOUR_KEY"
POST/proxiesProxy kaufenSchlüssel: nötig

type · country (ISO-3166 alpha-2) · traffic_gb 1–1000 · rotation.interval_minutes 1–120

curl -X POST https://proxycove.com/api/v1/proxies \
  -H "Authorization: Bearer pc_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"residential","country":"de","traffic_gb":5,
       "rotation":{"interval_minutes":10}}'
GET/proxiesAlle Proxys mit RestvolumenSchlüssel: nötig
curl https://proxycove.com/api/v1/proxies -H "Authorization: Bearer pc_live_YOUR_KEY"
GET/proxies/{id}/credentialsVerbindungsdatenSchlüssel: nötig
curl https://proxycove.com/api/v1/proxies/ID/credentials -H "Authorization: Bearer pc_live_YOUR_KEY"
POST/proxies/{id}/extendTraffic nachkaufenSchlüssel: nötig

traffic_gb 1–1000

curl -X POST https://proxycove.com/api/v1/proxies/ID/extend \
  -H "Authorization: Bearer pc_live_YOUR_KEY" \
  -H "Content-Type: application/json" -d '{"traffic_gb":5}'
GET/proxies/{id}/usageTraffic-VerbrauchSchlüssel: nötig
curl https://proxycove.com/api/v1/proxies/ID/usage -H "Authorization: Bearer pc_live_YOUR_KEY"
POST/proxies/{id}/rotationIP-Rotation ändernSchlüssel: nötig

mode: "every_request" | interval_minutes: 1–120

curl -X POST https://proxycove.com/api/v1/proxies/ID/rotation \
  -H "Authorization: Bearer pc_live_YOUR_KEY" \
  -H "Content-Type: application/json" -d '{"interval_minutes":10}'
POST/account/link-telegramTelegram-VerknüpfungscodeSchlüssel: nötig

der Code gilt 30 Minuten

curl -X POST https://proxycove.com/api/v1/account/link-telegram -H "Authorization: Bearer pc_live_YOUR_KEY"
POST/account/recoveryE-Mail zur Wiederherstellung hinterlegenSchlüssel: nötig

email — Bestätigungs-E-Mail höchstens einmal pro Stunde

curl -X POST https://proxycove.com/api/v1/account/recovery \
  -H "Authorization: Bearer pc_live_YOUR_KEY" \
  -H "Content-Type: application/json" -d '{"email":"[email protected]"}'

Verbindung zum gekauften Proxy

Alle Proxys antworten auf go.proxycove.com. Der Port bestimmt den Rotationsmodus:

824neue IP bei jeder Anfrage
10000IP bleibt für die eingestellten 1–120 Minuten gleich
http://LOGIN:[email protected]:824

Warten Sie nach dem Kauf etwa 5 Sekunden bis zur ersten Anfrage — der Länderfilter wird beim Anbieter nicht sofort wirksam.

Fehler und Limits

400Ungültige Anfrageparameter
401Schlüssel fehlt, ist ungültig oder widerrufen
403Konto gesperrt
404Objekt nicht gefunden oder gehört einem anderen Konto
429Zu viele Anfragen. Der Header Retry-After nennt die Wartezeit
502Fehler des Zahlungsanbieters

Limits: 60 Anfragen pro Minute je Schlüssel und 120 je Adresse, 20 Kontoerstellungen pro Stunde je Adresse, Anfragekörper bis 32 KB.

Maschinenlesbare Spezifikation

Die vollständige OpenAPI-Spezifikation — verständlich für Client-Generatoren und KI-Agenten:

https://proxycove.com/api/v1/openapi.json

Arbeiten Sie mit einem KI-Agenten?

Dann brauchen Sie kein HTTP: es gibt einen fertigen MCP-Server, der sich mit einer Zeile an Claude, ChatGPT, Cursor und andere anbinden lässt. https://proxycove.com/de/ai-agents/