GET
/v1/parseURL Parser
Parse a URL into structured components.
Part of URL Parser· Rate limits: 60 req/min
Parameters
urlquerystringrequiredAbsolute URL to parse
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| url | query | string | Yes | Absolute URL to parse |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://urlparser.apiseeker.com/v1/parse" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"href": "https://apiseeker.com/tools?x=1#top",
"protocol": "https:",
"host": "apiseeker.com",
"pathname": "/tools",
"searchParams": {
"x": "1"
},
"hash": "#top"
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Try this endpoint
API Playground
URL Parser
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
urlparser.apiseeker.comhttps://urlparser.apiseeker.com/v1/parseStatus: —Latency: —
Response headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
cURL
curl -s "https://urlparser.apiseeker.com/v1/parse" \
-H "X-SEEKER-Key: YOUR_API_KEY"