Get Urls Rental avatar
Get Urls Rental

Pricing

$10.00/month + usage

Go to Store
Get Urls Rental

Get Urls Rental

Developed by

Maged

Maged

Maintained by Community

scrap links from any website, ppr version: https://apify.com/maged120/get-urls

5.0 (1)

Pricing

$10.00/month + usage

1

Total users

2

Monthly users

2

Runs succeeded

80%

Issues response

0.051 hours

Last modified

3 days ago

get-urls-rental

The get-urls-rental 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