Install
openclaw skills install urlmitra-link-managerManage branded redirects, audit traffic analytics, and execute semantic link queries using URLMitra.
openclaw skills install urlmitra-link-managerThis skill extends your OpenClaw agent, enabling it to manage branded redirects, audit links for broken destinations, analyze click attribution metrics, and semantically search workspace resources using standard URLMitra endpoints.
mitr.to/roadmap or mitr.to/product-tour).404 errors to protect traffic.URLMITRA_API_KEY: Your workspace API credential. Secure this key via your developer settings dashboard in URLMitra.Always use standard curl calls and jq parsing to communicate with URLMitra's APIs.
To create a branded link, send a POST request with destination URL and alias parameters.
curl -s -X POST \
-H "Content-Type: application/json" \
-H "X-API-Key: $URLMITRA_API_KEY" \
-d '{"url": "{url}", "alias": "{slug}"}' \
https://api.urlmitra.com/api/v1/links
Validate target destinations in real-time. If an alias is provided, check its target. If no alias is provided, sweep all active workspace redirects.
curl -s -H "X-API-Key: $URLMITRA_API_KEY" \
https://api.urlmitra.com/api/v1/health/summary
curl -s -H "X-API-Key: $URLMITRA_API_KEY" \
https://api.urlmitra.com/api/v1/links/{alias}
"id" property from the resulting JSON, and POST to trigger the manual checker:
curl -s -X POST \
-H "X-API-Key: $URLMITRA_API_KEY" \
https://api.urlmitra.com/api/v1/health/check/{linkId}
Use backend Gemini vectors to search the workspace conceptually.
curl -s -X POST \
-H "Content-Type: application/json" \
-H "X-API-Key: $URLMITRA_API_KEY" \
-d '{"query": "{searchTerm}"}' \
https://api.urlmitra.com/api/v1/mitra/search