Skip to main content

API

Public · No authentication required · CORS enabled

Endpoint

GET https://wowlinks.net/api/?url=<URL>

Parameter

NameRequiredDescription
urlYesThe fully-qualified URL to look up (must start with http:// or https://).

Response

Returns JSON. HTTP 200 on success.

{
  "url":   "https://www.youtube.com/",
  "count": 42
}
  • url — normalized form of the URL you sent.
  • count — total signals (votes + posts) for that URL on WOW Links. Returns 0 if the URL has not been shared yet.

Errors

StatusBodyReason
400{"error": "..."}url parameter is missing or invalid.
405{"error": "method not allowed"}Non-GET request method used.
429Rate limit exceeded (60 requests per minute per IP).

Rate Limit

60 requests per minute per IP address.

Example

Request:

GET https://wowlinks.net/api/?url=https://www.youtube.com/

Response:

{
  "url":   "https://www.youtube.com/",
  "count": 5
}

Try it: /api/?url=https://www.youtube.com/