Get Urls avatar
Get Urls

Pricing

$3.00 / 1,000 results

Go to Store
Get Urls

Get Urls

Developed by

Maged

Maged

Maintained by Community

scrap links from any website, now has a RENTAL version https://apify.com/maged120/get-urls-rental

4.1 (2)

Pricing

$3.00 / 1,000 results

4

Total users

22

Monthly users

17

Runs succeeded

84%

Last modified

13 hours ago

get-urls

The get-urls actor extracts URLs from a given text input.

Usage

Input

The actor accepts the following input parameters:

  • target_url (required): The URL to scrape links from
  • limit (optional): Maximum number of URLs to return per page (minimum 10, default: 200)
  • page (optional): Page number for pagination (starts from 1, default: 1)

Example Input:

{
"target_url": "https://jamesclear.com/five-step-creative-process",
"limit": 50,
"page": 2
}

Example Output:

[
{
"name": "Speaking",
"url": "https://jamesclear.com/events"
},
{
"name": "About",
"url": "https://jamesclear.com/about"
},
{
"name": "CREATIVITY",
"url": "https://jamesclear.com/creativity"
},
{
"name": "PRODUCTIVITY",
"url": "https://jamesclear.com/productivity"
},
{
"name": "requires courage",
"url": "https://jamesclear.com/overcome-fear"
}
]

Pagination

The actor supports pagination through the page and limit parameters:

  • page: Specifies which page of results to return (starts from 1)
  • limit: Specifies how many results to return per page (minimum 10)

For example:

  • Page 1 with limit 50: Returns the first 50 URLs
  • Page 2 with limit 50: Returns URLs 51-100
  • Page 3 with limit 50: Returns URLs 101-150