Create a link in one request
Send a destination URL to POST /v1/links and receive a ready-to-use HTTPS short link. Requests can also select a connected domain and an ISO 8601 expiration time.
URL SHORTENING API
Create, manage, and monitor dependable short URLs through one focused JSON API.
URLMe gives application teams a small API surface for shortening long destinations without adding a campaign platform to their stack.
Send a destination URL to POST /v1/links and receive a ready-to-use HTTPS short link. Requests can also select a connected domain and an ISO 8601 expiration time.
List links, pause or resume delivery, permanently expire a link with HTTP 410, or delete it. Link state stays visible in the console and API responses.
Separate API keys by integration, rotate credentials without changing every workflow, and use predictable status codes for authentication, validation, limits, and destination safety.
WORKING EXAMPLE
Replace the environment variable with an active workspace key and run the request from server-side code.
curl --request POST "https://api.urlme.link/v1/links" \
--header "Authorization: Bearer $URLME_API_KEY" \
--header "Content-Type: application/json" \
--data '{"url":"https://example.com/campaign/welcome"}'READY TO CONNECT?