Install
openclaw skills install obul-proxyUSE THIS SKILL WHEN: the user wants to proxy a request through Obul, call an x402 API directly, or needs to understand the Obul proxy URL pattern. Handles x4...
openclaw skills install obul-proxyProxy any upstream request through Obul; Obul handles x402 discovery and payment flow automatically.
All requests route through the Obul proxy. Include your Obul API key in every request:
{
"headers": {
"Content-Type": "application/json",
"x-obul-api-key": "{{OBUL_API_KEY}}"
}
}
Base URL: https://proxy.obul.ai/proxy/{scheme}/{host}
Verify the Obul proxy is operational.
Pricing: $0.00
{
"method": "GET",
"url": "https://proxy.obul.ai/healthz",
"headers": {
"Content-Type": "application/json",
"x-obul-api-key": "{{OBUL_API_KEY}}"
}
}
Response: Returns {"status":"ok"} when the proxy is healthy.
Forward any HTTP request through the Obul proxy. The proxy handles x402 payment negotiation automatically.
Pricing: Varies based on upstream endpoint
{
"method": "POST",
"url": "https://proxy.obul.ai/proxy/https/x402.browserbase.com/browser/session/create",
"headers": {
"Content-Type": "application/json",
"x-obul-api-key": "{{OBUL_API_KEY}}"
},
"body": {}
}
Response: The proxied response from the upstream x402 endpoint.
| Endpoint | Price | Purpose |
|---|---|---|
GET /healthz | $0.00 | Health check |
/* | Varies | Proxy any upstream x402 request |
OBUL_API_KEY secure and never expose it in logs or client-side code.OBUL_API_KEY env var and reference {{OBUL_API_KEY}} in requests./healthz if you encounter issues.| Error | Cause | Solution |
|---|---|---|
401 Unauthorized | Missing or invalid API key | Verify OBUL_API_KEY is set and valid. |
402 Payment Required | Upstream requires payment | Ensure your Obul account has sufficient balance. |
403 Forbidden | API key lacks permissions | Check your key has the required scopes. |
404 Not Found | Invalid upstream URL | Verify the upstream endpoint URL is correct. |
429 Too Many Requests | Rate limit exceeded | Add a short delay between requests. |
500 Internal Server Error | Obul proxy issue | Retry the request. If persistent, check status at https://proxy.obul.ai/healthz. |
503 Service Unavailable | Proxy temporarily down | Wait a few seconds and retry. |