[Solved] How can I find the target URLs of the tiles on this webpage? (And hidden data too, if possible) [closed]


Yes. Pull it from the API:

import requests
import pandas as pd

url="https://api.verivest.com/sponsors/find"
payload = {
    'page[number]': '1',
    'page[size]': '9999',
    'sort': '-capital_managed,name',
    'returns': 'compact'}

jsonData = requests.get(url, params=payload).json()
data = jsonData['data']

df = pd.json_normalize(data)
df['links'] = 'https://verivest.com/s/' + df['attributes.slug']

Output:

print(df['links'])
0                https://verivest.com/s/fairway-america
1               https://verivest.com/s/trion-properties
2       https://verivest.com/s/procida-funding-advisors
3           https://verivest.com/s/legacy-group-capital
4       https://verivest.com/s/tricap-residential-group

1291    https://verivest.com/s/zapolski-real-estate-llc
1292                 https://verivest.com/s/zaragon-inc
1293           https://verivest.com/s/zeus-equity-group
1294                 https://verivest.com/s/zne-capital
1295     https://verivest.com/s/zucker-investment-group
Name: links, Length: 1296, dtype: object

2

solved How can I find the target URLs of the tiles on this webpage? (And hidden data too, if possible) [closed]