RequestList Bridge avatar
RequestList Bridge

Pricing

Pay per usage

Go to Store
RequestList Bridge

RequestList Bridge

Developed by

Paulo Cesar

Maintained by Community

Allows you to filter (thus cleaning up your list) and append new data to those requests before sending to your target task. Also enables a workaround to provide requestsFromUrl to existing actors that don't support it natively.

0.0 (0)

Pricing

Pay per usage

0

Monthly users

1

Last modified

3 years ago

Allows you to filter (thus cleaning up your list) and append new data to those requests before sending to your target task.

Also enables a workaround to provide requestsFromUrl to existing actors that dont't support it natively.

Example

Target task accepts a startUrls but as a plain string array:

1{
2    "taskId": "x02LumCy0WXdGP7nt",
3    "requestListSources": [
4        {
5            "requestsFromUrl": "https://apify-uploads-prod.s3.amazonaws.com/Hhewqx4YNnyWz2qGk-data.csv"
6        }
7    ],
8    "plainArray": true,
9    "targetStartUrlsProperty": "startUrls"
10}

Target task accepts RequestQueue only:

1{
2    "taskId": "x02LumCy0WXdGP7nt",
3    "requestListSources": [
4        {
5            "requestsFromUrl": "https://apify-uploads-prod.s3.amazonaws.com/Hhewqx4YNnyWz2qGk-data.csv"
6        }
7    ],
8    "targetStartUrlsProperty": "startUrls"
9}

Filter out and transform the requests:

1{
2    filter: (req) => /apify/i.test(req.url),
3    map: (req) => {
4        req.userData.isMapped = true;
5        return req;
6    },
7}

License

Apache 2.0

Pricing

Pricing model

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.