ПРОЧТИ МЕНЯ

GnePro

What is GnePro?

GnePro is a general news extractor API. You can use it to extract almost any articles or news detail pages by a single call. It is as simple as few lines of code:

import requests

url = "https://gnepro.p.rapidapi.com/crawl"

payload = {
	"url": "https://...",
	"js": False,
	"charset": "auto"
}
headers = {
	"X-RapidAPI-Key": "<your key>",
	"X-RapidAPI-Host": "gnepro.p.rapidapi.com",
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
Подписчики: 0
Создатель API:
K
kingname
kingname
Войдите, чтобы оценить API
Оценки: 5 - Голосов: 1