Forums

Add to whitelist

Kindly add https://www.thesportsdb.com/api/ to the whitelist.

Here in https://www.thesportsdb.com/api.php it shows that it is a publicly accessible api

Sure! That's whitelisted now.

Great! Thanks

Can you add free.currconv.com/api to you whitelist. Thanks upfront

Ok, That's done

Can you please add 'api.cai.tools.sap' this API to whitelist.

Send us a link to the API documentation and we'll consider it for the whitelist.

Here is the documentation. https://cai.tools.sap/docs/api-reference/#messages

Thanks in Advance.

No problem. I have added that to the whitelist.

hi, please add api.payping.ir the documentation is available at https://docs.payping.ir thanks.

okay, i've added api.payping.ir. Would you also need oauth.payping.ir?

hi, yes. for authentication this would be needed as well.

No problem. I have added that to the whitelist.

Hey, can you add www.flightstats.com?

We can only whitelist sites if they provide an official documented public API -- if that site has one, if you post a link to the API docs, we can consider it for the whitelist.

Giles, flightstats.com has this API developer.flightstats.com/api-docs/aircraft/v1

The docs indicate that api.flightstats.com is the address for the API, so I have added that to the whitelist.

Hello, can you please add this https://vsrequest.video to whitelist? Here is the documentation https://videospider.in/, thanks!

I don't see any API documentation there, just a marketing page.

Good afternoon! Did I understand correctly that to install the parser on your server, you need to buy any paid version, for example, $ 5? I will do parsing from a third-party site that is not in the white list vsepereustupki.ru. Thanks

If the site has a publicly documented API, send us a link to the documentation and we'll consider it for the whitelist. If it does not have a publicly documented API, then you will need to upgrade to access it.

HI, can you please add 'api.gismeteo.net' this API to whitelist?

Please, add https://www.worldometers.info/coronavirus/ to the whitelist.

Hi, can you add to whitelist API. About API: API Service for tracking the COVID-19. API documentation: https://github.com/Laeyoung/COVID-19-API API domain: https://wuhan-coronavirus-api.laeyoung.endpoint.ainize.ai/ API subdomains: https://wuhan-coronavirus-api.laeyoung.endpoint.ainize.ai/jhu-edu/brief

https://wuhan-coronavirus-api.laeyoung.endpoint.ainize.ai/jhu-edu/latest?iso2=[Country]&onlyCountries=true

https://wuhan-coronavirus-api.laeyoung.endpoint.ainize.ai/jhu-edu/timeseries

https://wuhan-coronavirus-api.laeyoung.endpoint.ainize.ai/jhu-edu/timeseries?iso2=[Country]&onlyCountries=true

in the second and fourth you need to put instead [Country] country Iso2

Thank you for taking the time for my request. I will be very grateful if you add API to whitelist

@test89, @shizik -- we can only whitelist sites if they provide an official documented public API -- if that site has one, if you post a link to the API docs, we can consider it for the whitelist.

@ArmKiller -- I'll reply on your other thread.

api.eu-gb.assistant.watson.cloud.ibm.com Please add the above api link in whitelist

Ok, I've added that for you.

Hi! Kindly ask for https://osu.ppy.sh API docs: https://osu.ppy.sh/docs/index.html

No problem. I have added that to the whitelist.

Hello, Can you guys add Dynadot APIs, https://api.dynadot.com/api3.xml
Documentation for same is on https://www.dynadot.com/domain/api3.html

Sure -- that's whitelisted now.

Hello! Can you please add http://amazon.com? Documentation on https://docs.aws.amazon.com/

Hello! Can you please add http://amazon.com? Documentation on https://developer.amazon.com/documentation/ I am working with this and need to white list amazon.com Please review and respond as soon as possible if you can, thanks in advance.

We will not whitelist amazon.com. We can whitelist subdomains specific to the endpoints. Some of them are already whitelisted.

Hello, Can you guys add https://ouo.io/ Thanks

We can only whitelist sites if they are an official public API -- if that site is one, could you post a link to the API documentation?

can you add whitelist evds2.tcmb.gov.tr

We can only whitelist sites if they are an official public API -- if that site is one, could you post a link to the API documentation?

Please mark below URL whitelist URL: https://news.ycombinator.com/newest

documentation: https://github.com/HackerNews/API

Could you please add https://www.hkex.com.hk/ to the whitelist?

That doesn't seem like the api endpoint from that github page.

Please mark below URL as whitelist

API: https://api.pwnedpasswords.com/range/

Documentation: https://haveibeenpwned.com/API/v2

That is already on the whitelist.

Please mark URL as whitelist http://terriblytinytales.com/test.txt

Send us a link to the API documentation and we'll consider it for the whitelist.

if a site has no API documentation, can I add them to whitelist? if no is there any way to scrape data from that site using python anywhere?

No, we can only whitelist sites if they have an official public API with documentation showing that it is an official one.

Could you please add imap.yandex.ru to whitelist because yandex.ru already there

Adding it to the whitelist will not change anything. Free accounts can only use http(s) to connect out. Imap will be blocked whether the site is on the whitelist or not.

Please add https://spaceflightnewsapi.net/api/v1/ to the whitelist. Thanks !

No problem. it's done.

Thanks, Glenn. I bought the account, it helped for a couple of days. But. Now I have a new problem: after a few days, my script on the server began to work with an error (does not see letters), although it still works fine locally. Maybe this is some kind of problem with the cache? Sorry if I picked the wrong thread for the question.

What do you mean by "does not see letters"?

i am using the following function to receive emails (below is a piece of code) it works fine locally, but doesn't work on the server I was debugging and noticed that locally I see a list of letters for example [b'1 2 3 4 5 6 7 8 9 '] in data, but on the server I get an empty list.

def read_mail():
    connection = IMAP4_SSL(host=config.YA_HOST, port=config.YA_PORT)
    connection.login(user=config.YA_USER, password=config.YA_PASSWORD)
    status, msgs = connection.select('INBOX')
    assert status == 'OK'
    last_mes_id = int(msgs[0].decode())
    while True:
        status, msgs = connection.select('INBOX')
        typ, data = connection.search(None, 'TO', '{}'.format(config.YA_USER))
        num = data[0].split()[-1]

Then it would appear that you are not finding any messages that match the search you're doing. The connection is apparently working fine, otherwise you would have seen exceptions being raised by the connection. You will have to debug your search and cross-reference it with the messages in the inbox to work out why you're not finding any messages. My guess would be that config.YA_USER does not contain the value that you expect.

this script works fine on my computer. I checked the config, it is the same on the server as the local one. credentials are exactly the same. that's for sure, I double-checked. Debugging locally and from the server shows different results, can the server's response be cached somehow, maybe i just need to clear the cache?

There is no caching in your code. Have you checked that the value of config.YA_USER at the point where you're using it is what you expect? Just looking at your files will not tell you that. You need to check the variable at the point where you use it. You could also add some debugging output to your code to check things like the last_mes_id and other values are what you expect.

heyy, can you please add this below websites in whitelist.

https://www.abuseipdb.com/

https://www.badips.com/

https://www.onyphe.io/ https://www.onyphe.io/documentation/api

https://metadefender.opswat.com/

https://viewdns.info/ https://viewdns.info/api/

Thank you. ;)

OK, added API endpoints for those domains to our whitelist.

Kindly add https://dekontaminasi.com/api/id/covid19/hospitals to the whitelist.

Send us a link to the API documentation and we'll consider it for the whitelist.

Kindly add https://dekontaminasi.com/ to the whitelist.

add this website to the whitelist please. https://apicovid19indonesia-v2.vercel.app/api

Hello, pythonanywhere team,

Please add this public API for getting a link preview to whitelist. Link to the official documentation: https://www.linkpreview.net/docs/ Link to the website: https://www.linkpreview.net/

Thanks in advance!!

@deding We need links to the public API docs, not only endpoints, as Glenn already pointed out.

@bytenet I've added api.linkpreview.net to our whitelist for you.

@pafk thanks a lot :)

Hi, I've noticed you have several .noaa.gov (National Oceanic and Atmospheric Administration) websites whitelisted, but nhc.noaa.gov is not among them. Could you please add nhc.noaa.gov to white list. Thanks in advance.

We only whitelist documented APIs. What endpoint do you need?

This is the page with all kind of information from National Hurricane Center and may serve as an API page --> https://www.nhc.noaa.gov/gis/ And I'm interested in these particularly 2 files from that page: https://www.nhc.noaa.gov/gis-at.xml https://www.nhc.noaa.gov/gis-ep.xml

No problem. It's done.

Ok, thanks a lot!

hey can you please add this below website endpoints to whitelist, thank you :)

https://api.antideo.com/ https://antideo.com/

https://rapidapi.p.rapidapi.com/index.php

https://rapidapi.p.rapidapi.com/analysis

https://rapidapi.p.rapidapi.com/verify

https://rapidapi.p.rapidapi.com/phone-validate

http://apilayer.net/api/ https://apilayer.com/

can you provide the api documentation?

yeah sure. below mentioned links are for documentation of above API end points.

https://www.antideo.com/documentation/

https://numverify.com/documentation

https://rapidapi.com/metropolisapi/api/phone

https://rapidapi.com/Veriphone/api/veriphone

https://rapidapi.com/neutrinoapi/api/phone-validate

https://rapidapi.com/blaazetech/api/spam-caller-check

add to white list , please(not racism) https://coronavirus-monitor.ru/coronavirus-v-tatarstane/ https://api.coronavirus-monitor.ru/coronavirus-v-tatarstane/

https://coronavirus-monitor.ru/coronavirus-v-rossii/ https://api.coronavirus-monitor.ru/coronavirus-v-rossii/

These are already in the whitelist:

    apilayer.net

These were added to the whitelist:

    .p.rapidapi.com
    api.antideo.com

For api.coronavirus-monitor.ru we need link to docs.

hey i'm still getting this error

error: HTTPSConnectionPool(host='api.antideo.com', port=443): Max retries exceeded with url: /phone/+917383250846 (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden')))

can you please check again that API is whitelisted or not

API: https://api.antideo.com/phone/ documentation: https://www.antideo.com/documentation/

Could you try again?

working, Thank you so much :)

Thanks for confirming that!

Hello. Could you please add opencorporates api. it's documentation link is: 'https://api.opencorporates.com/documentation/API-Reference' . it's link is; https://api.opencorporates.com/ Thank you.

thanks, we have added that to the whiteslist for you!

Thank you

Hello ; Could you please bitrix24 rest API. The API URL is ; https://b24-r57wmw.bitrix24.com.tr/rest/

The docs of the API is; https://training.bitrix24.com/rest_help/

Thank you

I see that you asked about this in another forum thread, so I've replied there.

Hello, could you please consider adding this website to the whitelist? thank you. https://api.met.gov.my/

could you please add mail.privateemail.com for sending emails

If you're using SMTP, then that will not work on a free account. If it's through an HTTP API, send us a link to the API documentation and we'll consider it for the whitelist.

Add to whitelist Kindly add https://www.dolarsi.com/api/api.php?type=valoresprincipales to the whitelist, it is a publicly accessible api.

can you provide the api documentation?

Can you add https://yokatlas.yok.gov.tr/ to you whitelist. Thanks!

Hi @seleniumusername1, can you provide us with the official API documentation for that site?

Kindly add https://file.io to the whitelist.

Here in https://www.file.io/#api shows api documents.

No problem. It's done.

would you please add https://crash.gdhookk.com/ to your whitelist?

@Ostad what are the API endpoints? Could you provide us with official documentation for that API?

Please add gplinks.in API to the whitelist. It has public documentation - https://gplinks.in/member/tools/api

@kishanradia -- since it requires to log in, it does not seem to be a public documentation.

Can you please add api.vercel.com to the whitelist. Link to Documentation

sure, we have added api.vercel.com to the whitelist for you!

Please add https://beta.neutrino.at/api/explorer/get_current_nsbt2usdn_price https://beta.neutrino.at/api/explorer/get_current_price to the whitelist. Thanks ! doc. https://docs.neutrino.at/neutrino-api-and-explorer

It's done for you.

Hi , can you add to the whitelist: https://images-api.nasa.gov

https://images.nasa.gov/docs/images.nasa.gov_api_docs.pdf

Hi , can you add to the whitelist: https://privatematcher.blackturtle.eu/matcher/

https://privatematcher.blackturtle.eu

No problem. I have added that to the whitelist.

Hi , can you add to the whitelist:

https://images-api.nasa.gov

https://images.nasa.gov/docs/images.nasa.gov_api_docs.pdf

No problem. I have added that to the whitelist.

thanks

Hello, I would be glad if you can add: https://bmi.gv.at/news.aspx?id=4A7171477A51625143334D3D to the whitelist for some webscraping. Thank you in advance! :)

hi there, unfortunately we only add endpoints that have public api documentations to the whitelist. sorry!

heyy, can you please add this below website in whitelist. https://www.offertag.in/

@ajppcz Can you provide the api documentation?

I need to scrap the website and I don't have its API documentation for the same

We can only whitelist sites if they provide an official documented public API.

Hola, ¿puedes agregar a la lista blanca http://igniweb.pythonanywhere.com/api/v1.0/client-1.0/

That site is already on the whitelist.

Hi , can you add to the whitelist:

http://hubblesite.org/api/v3/

http://hubblesite.org/api/documentation

thanks

Sure! We've added that to the whitelist for you.

How to find the API url of website as I am not able to find the API url or documentation of https://www.offertag.in/

You need to look around the site or ask the people that run the site.

api.kinopoisk.cloud please

https://kinopoisk.cloud/docs (the documentation page is only displayed to registered users)

API and Doc: http://kinopoiskapiunofficial.tech/documentation/api/

kinopoiskapiunofficial.tech is whitelisted.

We do not whitelist APIs that are not public (eg. with the docs behind a login)

Can you add API"https://aip.baidubce.com/rest/2.0/image-process/v1/colourize" to you whitelist. the api documentation is :https://cloud.baidu.com/doc/IMAGEPROCESS/s/Bk3bclns3 Thanks upfront

Sure, we have added aip.baidubce.com to the whitelist for you.

hey i'm still getting this error requests.exceptions.ProxyError: HTTPSConnectionPool(host='ss1.bdstatic.com', port=443): Max retries exceeded with url: /70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=3175956902,4005611761&fm=26&gp=0.jpg (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden')))

Whether it is because of the delay, it has not been reflected in the whitelist

We've only whitelisted aip.baidubce.com, and you're getting that error trying to access a different host, ss1.bdstatic.com. Is that one documented somewhere?

hi guys! I'm building a pornhub Django clone using the pornhub_api python library! <br>but I'm getting the errors after coming to pythonanywhere,<br>I got to know its not whitelisted!<br> So Guys Please whitelist this API<br> Pornhub is a really big site so I don't think I need to tell u that it has an API <br>python library link : https://pypi.org/project/pornhub-api/<br>And Also make sure to whitelist redtube api also<br>api link https://api.redtube.com/docs<br>

I see, it's not because my API URL isn't on the whitelist. Because I need to submit a URL as a parameter, but this URL doesn't seem to be on the whitelist (I can't access it). This URL is the URL of a web image. May I ask how I should solve it? Can you provide the website request to submit the whitelist?

1.Can you add API https://aip.baidubce.com/rest/2.0/ocr/v1/accurate_basic to you whitelist. The api documentation is https://ai.baidu.com/ai-doc/OCR/1k3h7y3db.

2.Can you add API https://aip.baidubce.com/rest/2.0/ocr/v1/numbers to you whitelist. The api documentation is https://ai.baidu.com/ai-doc/OCR/Ok3h7y1vo.

3.Can you add API https://aip.baidubce.com/rest/2.0/ocr/v1/handwriting to you whitelist. The api documentation is https://ai.baidu.com/ai-doc/OCR/hk3h7y2qq.

This is very important to me. Please add it for me. Thank you very much!

@keaiRoy -- aip.baidubce.com is already on our whitelist.

@kalyn -- free accounts are restricted to the whitelisted domains, we can whitelist only public API endpoints for you.

Can you add www.lexico.com to the whitelist pls.

Sorry, we only whitelist publicly documented api endpoints.

Hi, do you whitelist APIs from rapid api? If so I would like to request the following:

https://rapidapi.com/contextualwebsearch/api/web-search?endpoint=apiendpoint_b8b43008-dd94-4b86-8fd0-26d70a4e870b

https://rapidapi.com/newscatcher-api-newscatcher-api-default/api/newscatcher?endpoint=apiendpoint_8218240c-8c08-420b-8cfe-36a56759f524

P.s.: I have recently deployed a website from my company's account, and I have been very satisfied with the service!

I apologize for not sending the link to the documentation but to the endpoints. Here they are, respectively:

https://english.api.rakuten.net/contextualwebsearch/api/web-search/details

https://www.notion.so/News-API-46632a5cd61548919ff0132b15b0f0fa

Hi, @danillo, .p.rapidapi.com endpoint which is used in both references is already on our whitelist.

Hey can you add repl.it to the whitelist? Its a free coding platform, and im actually hosting one thing on pythonanywhere and one thing on repl.it its a huge inconvenience that I cant use urllib.request to communicate with it. If you didnt know what repl.it is, heres the link https://repl.it and heres the docs https://docs.repl.it/ Thanks!!

Is there an API there?

Hello, could you add to the whitelist :

https://ll.thespacedevs.com/2.0.0/

Documentation:

https://ll.thespacedevs.com/2.0.0/swagger

No problem. I have added that to the whitelist.

thanks

Hello, could you add this to the whitelist: https://api.taapi.io/ Documentation: https://taapi.io/documentation/

Sure, we've added api.taapi.io to our whitelist.

Can you please add www.nith.ac.in It is my college website, and i am scraping public notices from the site.

Send us a link to the API documentation for the site and we'll consider it for the whitelist.

Actually, It is only a website(No API available ) and I am scraping data using Python's requests library for my hackathon project. It shows the following error : HTTPSConnectionPool(host='nith.ac.in', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden')))

If there is no publicly documented API, then we cannot add the site to the whitelist.

So there is no way to do web scraping ( I am not fetching data from an API) on pythonanywhere.

Not in a free account.

Hi there, could you add "https://publicsuffix.org/" to the whitelist. It contains all possible domain suffixes and a python module that I imported uses it.

No problem. I have added that to the whitelist.

Hi Team, Can you please whitelist below daily quotes urls:

First:

  • API: https://quotes.rest/qod?category=inspire&language=en
  • Documentation on: https://quotes.res

Second

  • API: https://zenquotes.io/api/today
  • Doc: https://zenquotes.io/#docs

Thank you!

Hi Team,

Can you please whitelist below daily quotes API/URL:

  • API: https://zenquotes.io/api/today
  • Doc: https://zenquotes.io/#docs

Thank you!

I have added zenquotes.io to the whitelist, quotes.rest just loads forever (and quotes.res doesn't exist)

Thanks

Please add Racksterli.com to whitelisted site.

We can only whitelist sites if they are an official public API -- if that site is one, could you post a link to the API documentation?

Can you kindly add Robinhood trading APP api to the whitelist? For stock: api.robinhood.com For cryptocurrency: nummus.robinhood.com Seems like the former has already been added to the whitelist. Thanks!

@maxuejian We need a link to the official api docs.

Kindly add this: https://mreversegeocoder.gsi.go.jp/reverse-geocoder/LonLatToAddress

https://cyberjapandata.gsi.go.jp

to whitelist since its a public accessible api

Could you post a link to the API documentation? Neither of those links go to that.

Hi, can you please add serpapi.com to the whitelist?

No problem. I have added that to the whitelist.

Hi, could you please add this url to the whitelist: https://url-metadata.herokuapp.com

The api documentation is in this link: https://url-metadata.herokuapp.com/api/metadata

No problem. I have added that to the whitelist.

For these endpoint url- 1)https://mreversegeocoder.gsi.go.jp/reverse-geocoder/LonLatToAddress 2)https://cyberjapandata.gsi.go.jp

Please refer to the below documentation -

1) https://memo.appri.me/programming/gsi-geocoding-api#%E9%80%86%E3%82%B8%E3%82%AA%E3%82%B3%E3%83%BC%E3%83%87%E3%82%A3%E3%83%B3%E3%82%B0API

2) https://maps.gsi.go.jp/development/ichiran.html#english //For cyberjapan

3) Offical githubaccount - https://github.com/gsi-cyberjapan to whitelist since its a public accessible api

hi, for the three documentation links that you provided, they don't seem to correspond to the urls you are asking to whitelist.

Hi, can you please add this websocket to the whitelist: wss://push1-v2.kucoin.com

The websocket documentation: https://docs.kucoin.com/#websocket-feed

Websockets will not work at all from a free account - only http(s)

ok

Hi, could you please add this url to the whitelist:

1)

url :https://api.solved.ac/

docs : None

Unfortunately, there is no document. To explain, it's an API that shows the rating of the PS site called 'acmicpc.net'.

2)

url : https://open.neis.go.kr/

docs : https://open.neis.go.kr/portal/guide/apiGuidePage.do

This is openAPI supported by the Korean education office. I can't find documents written in English.

It's a poor explanation, but I hope you like it. :-)

open.neis.go.kr is added. We cant' do anything about api.solved.ac

Hi could you please add https://www.live-rates.com/ to the whitelist. The documentation is on the same page.

@forexalert It's done for you

Hello, please add api.wistia.com to the whitelist. Documentation: https://wistia.com/support/developers

No problem. I have added that to the whitelist.

Hello, could you please add www.edponline.com.br to the whitelist?

Send us a link to the API documentation for the site and we'll consider it for the whitelist.

Would please add the following API hosts for the National Library of Korea? www.nl.go.kr (API document = https://nl.go.kr/NL/contents/N31101030700.do) seoji.nl.go.kr (API document = https://nl.go.kr/NL/contents/N31101030500.do) [Although nl.go.kr is in the write list, acutual API services are give by the hosts above.]

Also could you please check openapi.naver.com is in the list and accessible? I have a test code (/home/jylee386/connection_test.py) showing a error message when connecting the site via the http.client.HTTPSConnection.

In addition to openapi.naver.com, it will be really good to add https://book.naver.com/. It provides real data for the search results from https://openapi.naver.com/v1/search/book.xml and https://developers.naver.com/docs/search/book/ shows official information for the search.

Hi, @jylee386. I've added .nl.go.kr to our whitelist. I'm a little bit confused about the book.naver.com -- isn't the endpoint already whitelisted as the API uses openapi.naver.com?

What errors do you get for openapi.naver.com?

Hi, @pafk. Thank you very much for adding .nl.go.kr. Regarding .naver.com*, I have two complectely separate issues:
First, I have a problem connecting the openapi.naver.com even though it is in the white list. The log message (jylee386.pythonanywhere.com.error.log) shows 2021-03-10 14:46:20,434: http.client.CannotSendRequest: Request-sent .... 2021-03-10 14:46:20,440: raise CannotSendRequest(self.__state). I believe that I have no permission to connect the openapi.naver.com. I even tried to run a code (~jylee386/connection_test.py) to check the connectivity but it failed.
Second**, I suggest to add the book.naver.com also in the white list since I need to get real book information from book.naver.com after obtailing a xml file from https://openapi.naver.com/v1/search/book.xml.

For the error with openapi.naver.com, could you post the full traceback?

For book.naver.com, could you post a link to some API documentation that mentions it?

Hi, can you add https://scholar.google.com/?

@PraveerT Is there an API? What is the endpoint?

can you add https://ec.europa.eu/info/news/feed_en to the whitelist, no API but an RSS feed. Thank you

We add only open documented public APIs.

please add https://ecampus.ncfu.ru/ to whitelist

Hi @HAXFI -- we are happy to add any public api's to the whitelist if you provide us with api documentation that is hosted on that domain and shows the official api endpoints.

Hi, I need below site to be whitelisted. It is New York City government site for street tree census.

Here is the API doc: https://dev.socrata.com/foundry/data.cityofnewyork.us/uvpi-gqnh

Here is the site: https://data.cityofnewyork.us/Environment/2015-Street-Tree-Census-Tree-Data/uvpi-gqnh

Here is the API JSON link I use to pull data: https://data.cityofnewyork.us/resource/uvpi-gqnh.json

Hope that you can add this to the whitelist ASAP as I need to get the WSGI server to run properly. Currently, I'm getting Error running WSGI application with urllib.error.URLError: <urlopen error Tunnel connection failed: 403 Forbidden>.

Thanks a ton in advance! Siong

Sure, that's whitelisted now.

Hi, can you add https://graphql.anilist.co

Documentation: https://anilist.gitbook.io/anilist-apiv2-docs/

Excuse me, I was already whitelisted.

Hi, @ArmandoJ, this endpoint is already on our whitelist. You can check whitelisted endpoints here: https://www.pythonanywhere.com/whitelist/

Hi, can you add https://v3.paribu.com

Hi @alidemir1, we are happy to add any public api's to the whitelist if you provide us with api documentation that is hosted on that domain and shows the official api endpoints.

https://v3.paribu.com/app/markets/waves-tl?interval=1000

@readatc -- thanks, is there a documentation for that?

Hi, I am trying to access a web service with no avail. Could you please include it in the whitelist? 'http://puntatracking.com/rest/' The documentation can be found in http://puntatracking.com/downloads/dev/manual.html Thanks in advance

For a while now I've been accessing api.pathofexile.com (a whitelisted site)

Today, however, the developers of PoE have updated their API and older calls (such as the ones I make) are no-longer supported via that URL - but remain supported via their main site of "www.pathofexile.com"

Whilst I'm not running this as a 'free' user so it doesn't affect me, some other folks use my code and do so my latest update will break them - is it possible to add the main site to the whitelist perhaps??

Thanks in advance

@poeclog is it documented?

@luislaviano I'm not able to access those docs.

@fjl Hi, try with, http://puntatracking.com/downloads/dev/ you should be able to do so.

@luislaviano -- nor is that link working...

I am accessing everytime from different computers aswell (even from my cell phone)... I need it to be in the whitelist ASAP. Please help.

@luislaviano, I've just noticed that you have a paid account -- that means that you have direct Internet access and are not affected by the whitelist.

Given that I cannot access that site from my computer in London, and my colleague @pafk in Poland also cannot access the site, perhaps they are blocking all incoming connections from anywhere apart from where you are? When I checked it at https://www.uptrends.com/tools/uptime, it could not be accessed from any location.

Thanks Giles for the quick response. I figured out that was some kind of blockage due to location. On the second aspect, I get the following: Traceback (most recent call last): File "/usr/lib/python3.8/site-packages/urllib3/connection.py", line 158, in _new_conn conn = connection.create_connection( File "/usr/lib/python3.8/site-packages/urllib3/util/connection.py", line 80, in create_connection raise err File "/usr/lib/python3.8/site-packages/urllib3/util/connection.py", line 70, in create_connection sock.connect(sa) TimeoutError: [Errno 110] Connection timed out and much more bla bla Cpould it be due to the same? They are blocking any connection coming from outside Uruguay? thanks

Hi sir, is it possible to include parsehub?

https://parsehub.com/docs/ref/api/v2/

@nivram thanks, added parsehub.com!

@luislaviano that sounds likely... since we don't have any servers from within Uruguay, you wouldn't be able to run the script without having some proxy through Uruguay

Could you please add: *.altervista.org

Hy Kindly White List streamtape.com Api. It is a well Known Video hosting platform. When i tried to access its api using requests i got an error of 403 forbidden.

Website - https://streamtape.com/

Base API - https://api.streamtape.com

Api Documentation - https://streamtape.com/api

Kindly WhiteList It Thanks

Edit :-

Streamtape uses other domain to upload files.

Documentation - https://streamtape.com/api#upload

Domain - https://tapecontent.net/

Kindly WhiteList This also

@capriele93 -- We can only whitelist sites if they have an official public API, so please post a link to the documentation if you want us to add something.

@rohan000 -- sure! Those are both whitelisted now.

Hey guys,

could you whitelist thefollowing site please?

https://api.corona-zahlen.org

docs: https://api.corona-zahlen.org/docs/endpoints/germany.html

many thanks!

Sure, we have whitelisted api.corona-zahlen.org. Thanks!

please add https://www.trendyol.com/

We can only whitelist sites if they have an official public API, so please post a link to the documentation if you want us to add something.

Hi guys, as i encounter with my current payment provider, as described here, please add my new payment provider as dashboard.packpay.ir. it's api described in this address . And api doc can be found here.

Error message occured in my code is:

    Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/usr/lib/python3.8/site-packages/urllib3/connectionpool.py", line 637, in urlopen
    retries = retries.increment(method, url, error=e, _pool=self,
  File "/usr/lib/python3.8/site-packages/urllib3/util/retry.py", line 399, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
   urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='dashboard.packpay.ir', port=443): Max retries exceeded with url: /oauth/token?grant_type=password&password=QbEEA44KsheUXqF&username=SocialAI (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden')))

if you see partial conformity in api endpoints and address i requested, you can see full address in my code:

token_url = 'https://dashboard.packpay.ir/oauth/token'
request_url = 'https://dashboard.packpay.ir/developers/bank/api/v1/purchase'
verify_url =  'https://dashboard.packpay.ir/developers/bank/api/v1/purchase/verify?reference_code='

thanks alot!

Both of the links you provided indicate that the API is at developers.packpay.ir, so I have added that to the whitelist.

@glenn, api description is at developers.packpay.ir, but as endpoints defined there, all of them are only accessible at dashboard.packpay.ir, just same as i defined them in my code and mentioned them in previous post.

So please add dashboard.packpay.ir to whitelist also. Thanks again

We need to see that domain mentioned in the docs.

@fjl, Hi again. After many messages to payment provider support for api documentation they post this answer:

this address point to api documentation:https://dashboard.packpay.ir/swagger-ui.html ,But it redirect to https://developers.packpay.ir/swagger-ui.html

So please add dashboard.packpay.ir to whitelist list if this is enough. Thanks alot

Thanks! Yes, that's a good enough indicator -- we've whitelisted that hostname now, and it should be accessible within the next five minutes.

Hello, can you please add this url to the whitelist: http://bark.phon.ioc.ee/punctuator

it is where you have text and it can add punctuation to it , using POST request

Thank you

@lol123 It's done for you

Hello, can you please add this URL to the whitelist: https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByPin?pincode=YOURPIN&date=DATE

(The pin code and the date will vary based on input)

Here is the documentation: https://apisetu.gov.in/public/marketplace/api/cowin#/Appointment%20Availability%20APIs/calendarByPin

It is also a public API

Thank you

It's on the whitelist and we are not blocking it.

I am still getting this error:

403 ERROR

The request could not be satisfied.

Request blocked. We can't connect to the server for this app or website at this time.

There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.

If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation. Generated by cloudfront (CloudFront)

Request ID: pe8ox0G2JZ6dNNhXamjc9bS5Lnkiw3sRS18EmckUi-bu_a8u6M4mpg==

Here is my code :

import requests
from flask import Flask

app = Flask('')

def speak(text):
    text=text.replace(" ","+")
    requests.get(f"https://api.callmebot.com/whatsapp.php?phone=+917034482705&text={text}&apikey=806309")
@app.route('/')
def home():

while True:


    custom_header = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'}
    cowinfo = requests.get("https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByPin?pincode=586124&date=13-05-2021",headers=custom_header).text
    return cowinfo

When I checked the whitelist,I could not find the domain name .co-vin.in. Thanks in advance

That message came from CloudFront, which is an Amazon service that is running the API that you are trying to connect to. As it says, you need to contact the website owner to find out what is going wrong.

please add ups api onlinetools.ups.com

OK thanks!

Can you please add http://opendata.dwd.de/ to the whitelist?

@falkel, @temperaturverlauf -- please provide us with public api endpoints and official documentation for them and we'll consider adding them to our whitelist.

@pafk https://www.ups.com/upsdeveloperkit/downloadresource?loc=en_US You need to download the api document from this address.

@pafk https://www.ups.com/us/en/help-center/sri/har-onl4a.page there is an explanation here too

It looks like you need to be logged in to have access to API (and the docs), so it's not a public one.

Please help me. What should I do to use it?You need a username, password and access code for the API. It already works like this in normal APIs? It just wants you to login to access documents.

It's not public if you have to log in to see the documentation, so it's not eligible for the whitelist. Paid accounts have open internet access.

@ giles , Thanks alot for adding dashboard.packpay.ir to whitelist

Please add iporesult.cdsc.com.np to whitelist

We can only whitelist sites if they have an official public API, so please post a link to the documentation if you want us to add something. Also, that address doesn't seem to correspond to a valid site -- perhaps there's a typo?

The link to opendata.dwd.de is no API, but there are text files containing weather data (DWD = 'Deutscher Wetterdienst' = 'German Weather Service') downloaded.

In general we can treat official open data sites as if they were APIs for the purposes of the whitelist if they're documented as open data -- could you post a link to the docs for that one?

As the name suggests, 'opendata.dwd.de' contains open data. You can also read https://opendata.dwd.de/README.txt, but the text is in German.

All right, we've added opendata.dwd.de to our whitelist.

Can you please add the website https://www.tradingview.com/screener/ to the whitelist ,it is not an API but it contains data about the stock market.It is a public website which offers stock info of different countries . Here is a link about them: https://www.tradingview.com/about/ Thank you.

We can only whitelist sites if they have an official public API.

Hi! Can you please whitelist yts.mx They have public API. URL to API Documentation: https://yts.mx/api

@ocs It's done for you

Thanks @fjl

Hi! Can you please also whitelist img.yts.mx also. Image Data on yts.mx is at img.yts.mx So please whitelist it so that image data can also be fetched.

@yts It's done for you

Hi,
Im technishen specialist in company named Fairwind(mounting wind turbains). I need applicattion for automatithation counting working hours for myself or for another employer. Can you please add this site: www.pms-fairwind.com

can you please add the website https://getlike.io/ to the whitelist

@Silens82 and @reza16 We can only whitelist sites if they have an official documented open public API.

can you please add the following link:

https://www.gstatic.com/covid19/mobility/Global_Mobility_Report.csv.

This will help us load the required csv for the application i have built.

Send us a link to the API documentation and we'll consider it for the whitelist.

Hay Devs

Kindly whitelist https://autopay10.herokuapp.com/

humble request :)

I'm trying to download heroku cli to my PA bash with this command: curl https://cli-assets.heroku.com/install.sh | sh and it gives me this error: (56) Received HTTP code 403 from proxy after CONNECT. I'm guessing it's because it's not whitelisted. Please whitelist it. The documentation is here: https://devcenter.heroku.com/articles/heroku-cli

Thanks.

@royalnabab -- We can only whitelist sites if they have an official public API, so please post a link to the documentation if you want us to add something

@storloft -- sure, no problem -- that's whitelisted now.

I'm trying to download heroku cli to my PA bash with this command: curl https://cli-assets.heroku.com/install.sh | sh and it gives me this error: (56) Received HTTP code 403 from proxy after CONNECT. I'm guessing it's because it's not whitelisted. Please whitelist it. The documentation is here: https://devcenter.heroku.com/articles/heroku-cli

Thanks.

@storloft -- we've added cli-assets.heroku.com to our whitelist.

Hi team, Please whitelist: https://unshorten.me/ API Documentation: https://unshorten.me/api

@shubhamiiest It's done for you

Hello, can you please whitelist https://api.vesselfinder.com/docs/ , https://www.vesselfinder.com and https://www.vesselfinder.com/vessels?type=7

Thank you! :3

@hiradik It's done for you

Hello, could you whitelist https://www.questrade.com/api/documentation/getting-started the API server address is https://api01.iq.questrade.com thank you !!

api01.iq.questrade.com is already whitelisted

Hello, could you add photon.komoot.io (in white list there is photon.komoot.de but it is no longer available and changed as mentioned above) in the list? Thank you!

@baam25simo It's done for you

please whitelist api.openai.com. I am building an openai app (access is limited). The app is trying to access api.openai.com port 443

@bhagvank We are happy to add any public api's to the whitelist if you provide us with api documentation that is hosted on that domain and shows the official api endpoints.

Access is limited. The API is available at : https://beta.openai.com/docs/api-reference/introduction

The endpoints are: post https://api.openai.com/v1/answers

get https://api.openai.com/v1/files

post https://api.openai.com/v1/files

get https://api.openai.com/v1/files/{file_id}

That is already on the whitelist.

the whitelist has api.steampowered.com, but my program enters the store's keys, and it needs to access store.steampowered.com please add this to the whitelist. thank you!

Could you send us a link to the part of the documentation where that's mentioned? We can only whitelist sites that are documented, even if they're alternative subdomains of sites that are already on the list.

will that do? https://steam.readthedocs.io/en/stable/api/steam.client.html#steam.client.SteamClient.get_web_session

will that do? https://steam.readthedocs.io/en/stable/api/steam.client.html#steam.client.SteamClient.get_web_session

why don't they answer me :(

Hello, can you add this api to the white list? https://ttsapi.almagu.com/Documentation/

could you add https://music.bugs.co.kr/ in whitelist? this domain is korean music streaming service.

@FebLokas we need to see API docs that specify which host is used for the API; that link just goes to an opaque Python API that doesn't mention the hostname.

@yoror21631 that page takes us to a login page; if we need to log in to see the API docs, you'll need to send us a username/password to use. For security, it's probably best if you send that to us using the "Send feedback" link at the top of the page.

@Joo02 We can only whitelist sites if they have an official public API, so please post a link to the documentation if you want us to add something

https://github.com/BrakeValve/dataflow/issues/5

can you please whitelist https://www.codechef.com/contests/?itm_medium=navmenu&itm_campaign=allcontests_head

Also this https://wiki.teamfortress.com/wiki/User:RJackson/StorefrontAPI#Known_methods

In all the cases we need official docs.

https://partner.steamgames.com/doc/home this is official documentation, there are references to store.steampowered.com

@FebLokas api.steampowered.com is already on our whitelist (store.steampowered.com doesn't look like an API endpoint).

The login and the password are the same "jemep90858@britted.com".

Can you please whitelist the Gameforge API?

https://gameforge.com/api/v1/auth/thin/sessions

https://spark.gameforge.com/api/v1/auth/thin/sessions

We need docs to whitelist APIs, but your account is a paid one so you are not limited to whitelisted domians.

Hey, can you add the API please? I have provided the login and password as you requested in the previous post.

API - https://ttsapi.almagu.com/Documentation/ Log and pass - jemep90858@britted.com

@yoror21631 Thanks for providing that, we've added ttsapi.almagu.com to our whitelist.

Hello, I know that Questrade api is already whitelisted (api01.iq.questrade.com) Is it possible to add api02.iq.questrade.com, api03.iq.questrade.com, api04.iq.questrade.com,api05.iq.questrade.com, api06.iq.questrade.com,api07.iq.questrade.com Questrade has seven servers and its random which one will reply to the request. thank you

We added all .iq.questrade.com to the whitelist

Hey, could you please whitelist the kanye API "https://pypi.org/project/kanye/#description"

pypi.org is already on the whitelist.

Hello. How you guys doing? Can you please add "apiagendamento.polisystem.com.br" to the whitelist? It's a gyms system API for scheduling. Thanks!

Send us a link to the API documentation and we'll consider it for the whitelist.

Can you please whitelist this Document: it's free site use for find Persian subtitles https://worldsubtitle.site/

Send us a link to the API documentation and we'll consider it for the whitelist.

https://www.aparat.com/

https://www.aparat.com/api

hi there please add aparat to your white list. thanks :).

That is already on the whitelist.

Hello.

please add (https://www.1secmail.com/api/v1/) to your whitelist. document: (https://www.1secmail.com/api/)

It's done, no problem!

Hello there. Can you please whitelist (i.instagram.com/api/v1/accounts/login/) ?

It's the mobile version of Instagram's API: https://stackoverflow.com/questions/43452544/what-is-https-i-instagram-com-api-v1 https://www.instagram.com/developer/

@jvsrvictor -- could you send us a link to the official documentation where the endpoint is actually mentioned?

Actually I need to whitelist (i.instagram.com/api/v1/).

It's the Instagram's Private API (The mobile one): https://instagram.api-docs.io/1.0/accounts/Q7Yn9rxnTKeDiorjx

Here is where it is used: https://github.com/b3nab/instagram-api-toolkit/blob/master/API.md

That is already on the whitelist because .instagram.com is on the whitelist.

Could you please add the shopatron.com domain to the whitelist? Please and thanks!

@f1rstxlas7 -- could you provide us with the official API docs for that domain?

@pafk It's through Kibo Commerce here: https://kibocommerce.com/oms-dev/welcome/ but endpoints are at the shopatron domain. You can see an example of this by drilling down to one of the more specific categories under the REST API like here: https://kibocommerce.com/oms-dev/orders/

And could you also please add a whitelist for BigCommerce's API here: https://developer.bigcommerce.com/api-docs

No problem. I have added api.bigcommerce.com, integration.shopatron.com and integrationstaging.shopatron.com to the whitelist.

Could you please add sentiment investor.

Docs: https://docs.sentimentinvestor.com/RESTful

Web: https://api.sentimentinvestor.com/v4/parsed?symbol=AAPL&token=<your-api-token>&key=<your-api-key>

No problem. I have added that to the whitelist.

Thank you!

Hello. Could you please add this to the whitelist? I'm learning to write bots.

http://www.lmk-lipetsk.ru/main_razdel/shedule/index.php

Hello. Could you please add this to the whitelist? I'm learning to write bots.

http://www.lmk-lipetsk.ru/main_razdel/shedule/index.php

Send us a link to the API documentation and we'll consider it for the whitelist..

please whitelist following URL.. https://trade.fyers.in/api-login/redirect-uri/index.htm

here is API document link.. https://myapi.fyers.in/docs/

Tradingview API link -> https://tr.tradingview.com/rest-api-spec/

trade.fyers.in is whitelisted now. In case of tr.tradingview.com it does not look like something related to any specific domain.

please add this URL to the white list : https://www.httpdebugger.com/Tools/ViewHttpHeaders.aspx its send requests. thanks.

That looks like it's supposed to be used from a browser, so it's not an API and we cannot whitelist it.

No, I want to use the Telegram api, but in my country there is a filter, so I want to use this

Hello, can the Cryptopanic API please be added to the whitelist, here is the link to the API documentation: https://cryptopanic.com/developers/api/

@dinolord It's done for you

hello . please can Lorem picsum be added to the whitelist , here the link : https://picsum.photos/

@Roudec can you provide us with an official documentation for API endpoints that you're interested in?

@pythonanywhere team, could you please add https://newchat1234.herokuapp.com/chat , it is for educational purpose for chatbot. Awaited for update asap. Thanks in advance :)

Send us a link to the API documentation and we'll consider it for the whitelist.

Hello,

Could you please add dassault_systems.woffu.com to the whitelist? It is a subdomain of app.woffu.com which is already whitelisted (API doc: https://www.woffu.com/en/api/).

Thank you!

@CarlosAgenjo We need docs where that endpoint is mentioned.

sorry this domain already added in your whitelist, tnk you

Does a paid account also need to make whitelist their API if its not whitelisted with pythonanywhere?

No , Paid account dont need whitelist @nehatkhan

Yes, that's right -- paid accounts have unrestricted Internet access. With one, the only sites that you won't be able to connect to are ones that are blocking connections from PythonAnywhere on their side.

Please add 'mail.zoho.com' to your whitelist

We can only whitelist sites if they have an official public API, so please post a link to the documentation if you want us to add something. Please also note that free accounts can only make HTTP or HTTPS requests to whitelisted sites -- if that hostname is an SMTP server, then we cannot whitelist it.

Hi, could you please add https://quotes.rest/ in whitelist

Public documentation - https://quotes.rest/

Hello, can you add the site "https://www.ypec.ru" to the whitelist? I developed a telegram bot for my college, but unfortunately I cannot access the site ( https://github.com/nik20z/ypec_bot

@rudreshPV - That is already in the whitelist.

@nik20z - Send us a link to the API documentation and we'll consider it for the whitelist.

I believe this what you want

https://github.com/brian-the-dev/python-tradingview-ta

"unofficial python API wrapper" is not an official documentation of the API.

Hello. Could you please add this "https://www.futsell.ru/sell/board/" to the whitelist? API: https://www.futsell.ru/help/dokumentatsiia-po-sell-api/

@deadvictor1991 It's done for you

hello please add https://musify007.herokuapp.com/ to whitelist

@Musify -- if the site exposes a public API with an official documentation, please provide us with that, and we'll consider it for whitelisting.

Hello, can you please add the following 2 APIs to the whitelist?

https://emkc.org/api/v2/piston/runtimes

https://emkc.org/api/v2/piston/execute

The API documentation can be found here: https://github.com/engineer-man/piston#api

@tankking -- is there a link between emkc.org and the documentation? We support only public APIs with offiacial documentation.

https://github.com/engineer-man/piston#api this link not showing the documentation? This is a public API up-to-date with the latest languages. Or did I understand the meaning of public API wrong? This says here it is public API: https://github.com/engineer-man/piston#public-api

Ah, I understood what I did not post...https://piston.readthedocs.io/en/latest/ here you can find the official documentation :D

Hi. Could you please add this onehttps://shotgrid.autodesk.com/ to the whitelist. Api is: https://developer.shotgridsoftware.com/python-api

What we need is something on emkc.org that references that documentation. After all, anyone can put up a web page saying that such-and-such a domain is a public API, but we can only be sure that it really is if it says so (or links to a page that says so) on the site itself.

Well, emkc.org points to its official youtube channel which references the github page, which in turn references the API documentation at https://piston.readthedocs.io/en/latest/ There is a video explaining the API found here: https://www.youtube.com/watch?v=SD4KgwdjmdI&t=1s You can even try it out as follows: do pip install pistonapi (it is a python wrapper for the api) and then run the following code:

import pistonapi

p = pistonapi.PistonAPI()

code = "print('hello world')"

p.execute(language="py", version="3.10", code=code)

So it is a public API, just not explicitly stated in the way you want it. Please do see if it is possible or not :)

@tankking It's done for you

Thanks a lot!

Hi PythonAnywhere!

Can this be added? https://api.ps3838.com

documentation: https://ps3838api.github.io/

@pmdp It's done for you

Can this be added? https://v2ex.com

@wekey if it exposes an open API, send us a link to the official documentation and we'll consider it for the whitelist.

Hello, can freecurrencyapi.net be added to the whitelist?

Official documentation here: https://freecurrencyapi.net/documentation

Thank you.

@mybitcoinapp -- no problem, it's done for you!

Kindly add https://en.savefrom.net/55/ to the whitelist.

@jotav98071 -- provide us with official documentation for API endpoints exposed by the site and we'll consider them for whitelisting.

Hi PythonAnywhere! Would you please add filestack.com to the whitelist?

@torrescolaneri Send us a link to the API documentation that contains the endpoint address and we'll consider it for the whitelist.

Hi PythonAnywhere! Would you please add https://www.royalpalace-844.com to the whitelist?

@dreamfollower85 Send us a link to the API documentation that contains the endpoint address and we'll consider it for the whitelist.

Hello! Can you please add https://sugoku.herokuapp.com/

Documentation: https://github.com/bertoort/sugoku#api

It's done for you.

Thank you!

Hello could you add https://synonyms.reverso.net/ free site to find synonyms on the Russian for example https://synonyms.reverso.net/%D1%81%D0%B8%D0%BD%D0%BE%D0%BD%D0%B8%D0%BC%D1%8B/ru/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80

Send us a link to the API documentation and we'll consider it for the whitelist.

It doesn't have documentation page. It's http get request with url like this https://synonyms.reverso.net/%D1%81%D0%B8%D0%BD%D0%BE%D0%BD%D0%B8%D0%BC%D1%8B/ru/<put the word to find synonyms>

We only whitelist documented open public APIs

Can you please add : https://waba.360dialog.io to your whitelist. Public API documentation: https://docs.360dialog.com/

Can you please add : https://waba.360dialog.io to your whitelist. Public API documentation: https://docs.360dialog.com/

@nalhamzy -- waba.360dialog.io is already whitelisted.

Can you please add https://www.triposo.com/api/documentation/20211011/reference to the whitelist? Thank you

@travelpal It's done for you

Hello, Can you please add: https://jira.sonoincloud.it to the whitelist? Thank you

We only whitelist documented open public APIs

Hello, can you please add https://stdict.korean.go.kr/openapi/openApiInfo.do to the whitelist? Thank you.

Sure -- I've whitelisted that just now, and it should be active within five minutes.

Thank you for adding "stdict.korean.go.kr". And can you please add "https://krdict.korean.go.kr/openApi/openApiInfo", too? Thank you.

Sure! Again, it will be active within about five minutes.

Thank you!

No problem :-)

Hi, could you please whitelist these URLs: (1) au.deputy.com documentation link: https://www.deputy.com/api-doc/API/Timesheet_Management_Calls/ (2) https://us.merchantos.com documentation link: https://developers.lightspeedhq.com/retail/authentication/authentication-overview/

thanks

I don't see those endpoints mentioned on those pages -- could you provide exact links where they are mentioned?

here in URL: "au.deputy.com/api/v1/resource/Timesheet", "au.deputy.com" is main site, and "/api/v1/resource/Timesheet" is the endpoint which you can find on this link: https://www.deputy.com/api-doc/API/Timesheet_Management_Calls/.

for now, just whitelist this one only

We need to see "au.deputy.com" mentioned there.

ok

ok and if you can then please whitelist "au.deputy.com" as soon as possible

We can whitelist the endpoint when we can see it mentioned in the docs.

Add this site to whitelist: https://margincalculator.angelbroking.com/OpenAPI_File/files/OpenAPIScripMaster.json

@arjunroaks -- provide us with the official documentation for that API endpoint and we'll see what we can do.

@pafk Please see the official documentation for the API endpoint mentioned below. https://smartapi.angelbroking.com/docs/Instruments Thank you.

Thanks -- we've added margincalculator.angelbroking.com to our whitelist for you.

Please could you add Yoti to the whitelist? Thanks!

URLS: https://api.yoti.com https://api.yoti.com/idverify/v1/sessions

docs: https://developers.yoti.com/yoti-identity-verification-public-api/ref

I do not see the domain mentioned in the docs. I see "www.example.com" only

Sorry - there's a tutorial here: https://developers.yoti.com/v6.0/in-branch-verification/create-a-session

Thanks! That's been added and should be active within about 5 minutes.

Awesome! Thanks!

Could you please add db.bit.io to the whitelist? Thanks so much!

@PeterPipeline -- send us official documentation for the API endpoint you want to be whitelisted and we'll see what we can do.

Sure! I'd like to talk to it with psql https://docs.bit.io/docs/connecting-via-sql-clients

That will not work on a free account. Free accounts can only connect out over http(s) to the whitelisted sites. pssql does not use http.

Thanks for the feedback, really appreciated! Would then it be possible to whitelist https://api.bit.io/ so I can access the service using their API? https://docs.bit.io/docs/connecting-via-the-api Cheers!

No problem. I have added that to the whitelist.

Thank you again!

Пишу бота на игру, нужно сайт игры добавить в белый список, буду кране благодарен ) http://wekings.ru/ http://g.time2play.mobi/

@Pioner send us official documentation for the API endpoint you want to be whitelisted and we'll see what we can do.

can this api be whitelisted? https://rpc.ankr.com/bsc

can this api be whitelisted? https://rpc.ankr.com/bsc

Sure -- we've whitelisted rpc.ankr.com, and it should be active within five minutes.

Hello! Could you please whitelist https://huggingface.co/? Here are thier docs: https://huggingface.co/docs

@arelliott api-inference.huggingface.co is already whitelisted

Can this be whitelisted?https://www.bseindia.com/data/xml/notices.xml

@Stocker -- we're happy to consider any open and public API endpoint if you provide us with the official documentation for it.

Hello! API: https://laitis.ru/send

Documentation: https://github.com/Mikolaytis/LaitisIntegration/wiki

It's an app to integrate PC into smarthouse system, can you add it please

Please whitelist discord.com API: https://discord.com/developers/docs/

@e99pronin -- sure, that's done now, and will be active within about five minutes.

@Electricitypipe -- discord.com is already on the whitelist, but unfortunately the most popular PyPI package for connecting to it cannot send WebSocket requests over our proxy, so it doesn't work :-(

Hi, Request you to look into https://docs.dex.guru/resources/api as an addition to the whitelist.

Website link-https://dex.guru/ API Docs link - https://docs.dex.guru/resources/api

Thanks.

Sure, we've whitelisted api.dev.dex.guru just now, and it should be active within five minutes.

Hello,

can you please whitelist: https://twitter-quotebot.herokuapp.com/

API docs: https://devcenter.heroku.com/articles/platform-api-reference

Thanks.

Those are the docs for the Heroku API, not for the site, which just happens to be hosted on Heroku.

Hello, can https://trade.sea.playblackdesert.com/Trademarket/GetWorldMarketWaitList be added to whitelist? thanks.

Send us a link to the API documentation and we'll consider it for the whitelist.

Thank you for the quick response, This is the API documentation : https://developers.veliainn.com/ thanks.

No problem. I have added trade.sea.playblackdesert.com to the whitelist.

Hi! Could you add https://login.microsoftonline.com/ to the whitelist?

Send us a link to the API documentation and we'll consider it for the whitelist.

May this be it? https://docs.microsoft.com/en-us/azure/active-directory/develop/

It may be somewhere in there. Send us the link to the specific page in there that mentions that endpoint and we'll consider it for the whitelist.

Hi, please whitelist https://beta.openai.com/

API docs - https://beta.openai.com/docs/api-reference/introduction

I'm not seeing beta.openai.com mentioned there -- culd you send us a more specific link?

That's the link, I'm not able to access the API key from there.

Maybe this one? - https://beta.openai.com/account/api-keys

There's authentication required -- we whitelist only open and public APIs.

Can you just add the website in the whitelist?

If you provide us with a link to the official documentation that mentions the endpoint you requested, we'll be able to consider it for the whitelist.

Can you add https://t.me/aiogramDan_bot to you whitelist. Thanks upfront

If you provide us with a link to the official documentation that mentions the endpoint you requested, we'll be able to consider it for the whitelist.

Please add this API in whitelist https://picsart.io/

https://picsart.io/api-reference

We've whitelisted api.picsart.io as it's mentioned as the API main url.

Hi, please add this API to the whitelist: https://soccer.sportmonks.com/

Here is their documentation: https://docs.sportmonks.com/football/

OK, we've added soccer.sportmonks.com to our whitelist for you.

Hi, please add this API to the whitelist: https://api.xforce.ibmcloud.com/ https://www.virustotal.com/api/

Here is their documentation: https://api.xforce.ibmcloud.com/doc/ https://developers.virustotal.com/reference/overview

I have added api.xforce.ibmcloud.com to the whitelist and www.virustotal.com was already on the whitelist.

Plese add this api in whitelist http://soft.photolab.me/api.html

We added to the whitelist:

  • api-soft.photolab.me
  • photolab.me
  • soft.photolab.me
  • upload-soft.photolab.me

Hi can the below public api be whitelisted.

Api:http://www.365api.vip

Public documentation:http://45.141.118.50/en/soccer-liveOdds/

Thanks

We need some kind of way to link that documentation to the website in question -- is there a link somewhere on http://www.365api.vip?

no, http://www.365api.vip is the api link and :http://45.141.118.50/en/soccer-liveOdds/ is where the documentation resides, you can see from :http://45.141.118.50/en/soccer-liveOdds/ that http://www.365api.vip is in the documentation. the website is legit and so is the documentation

We need some kind of link between the domain and the documentation, since we whitelist only official APIs.

The domain is listed in the documentation just that it's a different IP. Would greatly appreciate if you can help to whitelist http://www.365api.vip

We need a link from the domain in question to the documentation since that is a proof that the API is exposed by the domain owners.

Dear Team, I hope you are doing well! Could you please whitelist below On This Day API/URL (a ZenQuotes.io API):

API: https://today.zenquotes.io [Example API request for 3rd July: https://today.zenquotes.io/api/7/3 ]

Doc: https://premium.zenquotes.io/on-this-day-api-documentation/

Thank you!

Sure! I've whitelisted today.zenquotes.io just now, and it should be active within five minutes.

Requesting Whitelist additions for

https://bingx-api.github.io/docs/swap/introduce.html

https://bingx.com/

would you please add

I see api-swap-rest.bingbon.pro listed as the root url there -- is that what you want?

https://api-swap-rest.bingbon.pro yeah

OK, whitelisted!

Requesting Whitelist additions for

APIs https://api.pyrus.com https://api.zadarma.com

Public documentations https://pyrus.com/en/help/api/ https://zadarma.com/en/support/api/

Thank you!

Hi! Could you add https://fakestoreapi.com/products to the whitelist? I would greatly appreciate it

@zhekadoe -- no problem, it's done for you.

@Glempshoppe -- provide us with official documentation for the API endpoint and we'll see what we can do.

Hello, can https://www.gismeteo.ru/ be added to whitelist? Here API documentation: https://www.gismeteo.ru/api/

No problem. I have added api.gismeteo.net to the whitelist.

I see in PythonAnywhere whitelist api-invest.tinkoff.ru but not invest-public-api.tinkoff.ru

Is it possible to white list this URL?

api documentation https://www.tinkoff.ru/invest/open-api/ https://tinkoff.github.io/investAPI/grpc/

gRPC APIs will not work from a free account because they are not http-based.

Hello, https://www.yaani.com/ is popular searching engine in Turkiye. Can you add this website? thx

@oktay811 If you provide us with a link to official documentation from yaani.com that lists a public api, we'll be able to consider the API for the whitelist.

You added bing.com, google.com or yandex.com. Do they have any api? I will do some work with yaani.com. It would be nice if you list this publicly available search engine. Even if you don't add it, thank you :)

@oktay811 The other ones (bing, google, yandex) were added because they do have public APIs.

Hello. Could you please whitelist my gitlab repository https://gitlab.skillbox.ru/pavel_chuev/python_basic_diploma.git Thank you

@ppro Thank you for your request. We are unable to add the requested API as its not public.

@ppro Thank you for your request. We are unable to add the requested API as its not public.

ok, didn't realized that, sorry, thanx for your fast response

Hello! could you add icd.who.int to the white list? This is the link to the official API documentation https://icd.who.int/icdapi/

Hi! Could you please add https://www.fio.cz to the whitelist? Fio.cz is a czech bank focused on investments. Doc is unfortunately only in czech.

@maxama99 I see you already upgraded, so you have unrestricted internet access now.

I know about it but I planning to downgrade to a free version because I am doing a super small project and it is not necessary to have paid version.

@maxama99 If you would like the domain too be added to the whitelist, you will need to send us a link to the documentation that details the api.

@medicalesp Hi, icd.who.int has been added to the whitelist.

@hmalik The link to official API is here: https://www.fio.cz/docs/cz/API_Bankovnictvi.pdf. But it is only in Czech. EDIT: I found en version: https://developers.fio.cz/swagger-ui/index.html

@maxama99 Hi, www.fio.cz has been added to the whitelist.

Can you please add these website to whitelist please ?

https://www.thestatsdontlie.com/ https://www.matchendirect.fr/

@kevinbetting Hi, Please send us links to the API documentation's and we'll consider them for the whitelist.

They are not API. Just two website i want to scrape

@kevinbetting You have a paid account that is not using whitelist.

Can you explain me why i can't scrape these two sites, Whereas this work for me ...

from selenium import webdriver
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--headless")
chrome_options.add_argument("--disable-gpu")
browser = webdriver.Chrome(options=chrome_options)
try:
    browser.get("https://www.google.com")
    print("Page title was '{}'".format(browser.title))
finally:
    browser.quit()

[edit by admin: formatting]

Hi. Would you please add https://contrib.rocks as a whitelisted so I can show my repository's contributors in the homepage! Thanks. :)

@kevinbetting I see you asked about this in a different forum thread so I've answered there.

@pastemedev we're happy to consider any open and public API endpoint if you provide us with the official documentation for it.

Requesting Whitelist additions for

API https://api-ru.iiko.services/

Public documentation https://api-ru.iiko.services/

Thank you!

Would you please add https://contrib.rocks to the whitelist?

Can you add https://my.te.eg to the whitelist please ?

@pasteme Hi, If you would like the above domain to be considered for the whitelist , please send us a link to the API documentation. Please note we can only whitelist sites with an official public API. Please see the below URL for additional information in regards to whitelist requests: https://help.pythonanywhere.com/pages/RequestingWhitelistAdditions/

Hi, PythonAnywhere staff, I hope you are in good health. please add this Api to whitelists.

API DOCUMENTATION URL: https://www.exchangerate-api.com/docs/python-currency-api

Thank you in Advance.

@zhekadoe Hi, api-ru.iiko.services has been added to the whitelist.

Hello. PythonAnywhere !

Please add [https://www.tistory.com/apis] to your whitelist.

The address of the API documentation is: https://tistory.github.io/document-tistory-apis/apis/

thank you

@graywavve Hi, www.tistory.com has been added to the whitelist.

Hi, PythonAnywhere staff, please add this Api to whitelists. API DOCUMENTATION URL: https://github.com/Stability-AI/stability-sdk

Thanks:)!

Hi there -- the whitelist works on a per-host basis, so we'll need to know what website that library accesses, and see the documentation on that site that describes the API at the HTTP level.

Hi, please can you whitelist dreamstudio WEBSITE: https://beta.dreamstudio.ai/dream API DOCUMENTATION URL: https://github.com/Stability-AI/stability-sdk

Hi, please can you whitelist dreamstudio

WEBSITE: https://beta.dreamstudio.ai/dream

API DOCUMENTATION URL: https://github.com/Stability-AI/stability-sdk

(Sorry for the double text!)

Thanks for the details! Unfortunately we still need to say something on dreamstudio.ai that states that there is an official API at that address.

<IGNORE>

Hi, please can you whitelist dreamstudio

API DOCUMENTATION URL: https://github.com/Stability-AI/stability-sdk

website: https://stability.ai/

We still need to know the hostname. The API documentation describes a Python library. We need to know the specific host name that it is connecting to.

Kindly add https://sandbox.momodeveloper.mtn.com/ to the whitelist

We can only whitelist sites if they provide an official documented public API -- if that site has one, if you post a link to the API docs, we can consider it for the whitelist.

Hi! Please can you whitelist dreamstudio documented API: https://pypi.org/project/stability-sdk/ website: https://stability.ai/

@awarixo see our messages above.

Hello. PythonAnywhere !

Please add [https://5sim.net] to your whitelist.

The address of the API documentation is: https://5sim.net/docs/#domain thank you

Hello, Please add SMSAPI.pl hosts to the whitelist. Hosts: api.smsapi.pl and api2.smsapi.pl API docs: https://www.smsapi.com/docs

@onir If you would like us to consider adding the above endpoints, please send us a link to the documentation which mentions them. Please note the link to the documentation provided does not mention the exact endpoints you have requested.

Hello. PythonAnywhere !

Please add [https://5sim.net] to your whitelist.

The address of the API documentation is: https://5sim.net/docs/#domain thank you

@bryan44 5sim.net has been added to the whitelist.

Hello! Please add the following api to the whitelist: https://www.whatismyip.com/api-documentation/ https://api.whatismyip.com/

Thanks!

Could you also whitelist the following? https://check-host.net/ip-info Because when I call it using Python-Requests I keep getting 403 error. This is the site https://check-host.net/

@whbot In regards to your request to whitelist the domain https://check-host.net/ , please note we need public documentation stating the hostname for the endpoint. If you would like us to consider adding the above domain, please send us a link to the API documentation.

@whbot In regards to your request to whitelist https://api.whatismyip.com/ , please note we need public documentation stating the hostname for the endpoint. If you would like us to consider adding the above domain, please send us a link to the API documentation as we are unable to view the documentation link you have sent as we are directed to the pricing page.

https://check-host.net/about/api https://www.whatismyip.com/api/

Those are the two links for the documentation, thanks!

@whbot check-host.net has been added to the whitelist. Please note in regards to your request to whitelist the other domain, we are not able to whitelist the domain based on the provided information as it is not public.

Hi. can you please add free-tier4.aws-us-west-2.cockroachlabs.cloud port 26257 to the whitelist? Thanks.

@saqibali We do not whitelist non-http services.

Hi. Does that mean I can not connect to an external database?

You can, from the paid account.

Hey there! Could the SeatGeek API could be added to the whitelist?

Here is the documentation: https://platform.seatgeek.com/

@PanchosAssistant api.seatgeek.com has been added to the whitelist.

Hi there. Can you please add https://bitmaxprofit.ru and https://onlyrichlife.site to the whitelist?

@deathstalker If you would like the above domains to be considered for the whitelist , please send us links to the API documentation. Please note we can only whitelist sites with an official public API.

Hi there wish you're doing best. Could you please add 'https://dub01.online.tableau.com/' to the whitelist ?

Hi. Could you please add the following link to your whitelist? I will appreciate if it can be done as soon as possible. Thank you. https://caixaaqui.caixa.gov.br/caixaaqui/CaixaAquiController/index

Hi ! can you please add this site to whitelist >> site url >> https://smspva.com Api doc >> https://smspva.com/new_theme_api thanks !

please whitelist : https://bidplus.gem.gov.in/all-bids as i have paid account and not able to access it?

@AGEE and @ rahulbabu - you both have paid accounts. The whitelist has no effect on paid accounts.

Hi ! can you please add this site to whitelist >> site url >> https://premsocks.com/socks-proxy Api doc >> https://premsocks.com/api-documentation/#introduction thanks !

please add this site to whitelist site url >> https://smspva.com Api doc>> https://smspva.com/new_theme_api thanks !

Hi there bryan4

Please note we can only whitelist sites with an official public API. The link you provided does mnot allow public access. https://smspva.com/new_theme_api

Please see the below URL for additional information in regards to whitelist requests:

https://help.pythonanywhere.com/pages/RequestingWhitelistAdditions/

Kind regards,

Hi ! can you please add this site to whitelist site url >> https://premsocks.com/socks-proxy Api doc >> https://premsocks.com/api-documentation/#introduction thanks !

@ bryan4 I have added premsocks.com to the whitelist

Hi, can you please add the following site to the whitelist

requests.exceptions.ProxyError: HTTPSConnectionPool(host='genius.com', port=443): Max retries exceeded with url: /api/songs/chart?time_period=day&chart_gen re=all&page=1&text_format=plain (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden')))

api.genius.com is already on the whitelist. Use the API for the site.

I'm using the api, but for the charts it is sending a request to https://genius.com/api/songs/chart

Send us a link to the documentation that shows that.

Hi, is it possible to add this API to the whitelist: https://gender-api.com/en/api-docs

best regards

No problem, we've added gender-api.com to our whitelist.

Hey Team, Mind whitelisting hackerone.com Reference: https://api.hackerone.com/

Thanks and Regards,

@jakre1234 In regards to your request to whitelist the domain above, please note we need public documentation stating the hostname for the endpoint. We are not able to whitelist the domain based on the provided information, if you would still like us to consider adding the requested domain please send us a direct link to the requested information.

Hi, is it possible to add this API to the whitelist: https://seller-api.takealot.com/

API documentation: https://seller-api.takealot.com/api-docs

best

@armughan Hi, Thank you for your message. Please note we are unable to view the API documentation on the link provided. Please send us a link to the public API documentation stating the API endpoint.

Hello @armughan

The doc link that you have provided , https://seller-api.takealot.com or https://seller-api.takealot.com/api-docs, is not accessible to me. I am getting a 404. We need documentation from takealot.com that clearly stated that they have a public api. It needs to be accessible by us and not require a registration to see.

-Kim

Hi @Kabbie thanks for the reply. I just checked and a part of the URL was missing before. Here is the official documentation link https://seller-api.takealot.com/api-docs/#/

I hope this will resolve the issue.

-Armughan

Hello, Please can you whitelist OpenAI api. Website: https://beta.openai.com/Documentation: https://beta.openai.com/docs/introduction

@employedgorilla Thank you for your message, api.openai.com is already on the whitelisted list.

Hi PythonAnywhere

please add these api

https://cutt.ly/cuttly-api https://services.tineye.com/TinEyeAPI

@acidfreakz Hi, Thank you for your message. Please note the link which you have sent, does not seem to open anything. Can you please confirm the domain you would like us to consider for the whitelist, and please send us a link to the documentation stating the endpoint you would like us to add.

add

https://replicate.com/docs

https://api.replicate.com/v1

tineye

cuttly

@acidfreakz Thank you for sending the link for Tineye, can you please confirm the endpoint which you would like us to add to the whitelist? In regards to the second domain request, can you please also confirm the endpoint which you would like us to whitelist?

https://api.tineye.com

.tineye.com

@acidfreakz Thank you for your reply. I can now confirm api.tineye.com has been added to the whitelist. In regards to your request about the cuttly domain, if you would still like us to consider the domain please send us the requested information.

https://www.dictionary.com/browse/

https://www.thesaurus.com/browse/

https://www.vocabulary.com/

Hi PythonAnywhere

please add these api

https://github.com/Shoonya-Dev/ShoonyaApi-py

i used this Api but i get proxy error and you previously whitelisted their domain but recently they changed their api endpoint please check it and whitelist their domain

api.pdfcrowd.com please whitelist this site

Hi! It would be helpful if you could whitelist the URL "daccess-ods.un.org" to access this United Nations-provided data! The document containing the API reference is UNdata "http://data.un.org/Host.aspx? You can get the document including the API reference from UNdata "!

@MatveyKlassny If you would like the above domains to be considered for the whitelist , please send us a link to the API documentations. Please note we can only whitelist sites with an official public API.

@131raviary If you would like the above domain to be considered for the whitelist , please send us a link to the API documentation. Please note we can only whitelist sites with an official public API.

@KaiTabata Thank you for your message, please note i am unable to open the documentation link which has been sent it directs me to a page with an error message. If you would still like the above domain to be considered for the whitelist , please send us a link to the API documentation we can view. Please note we can only whitelist sites with an official public API.

@NavaneethanT996 Thank you for your request. If that is the official API documentation, can you please send us a direct link from the official website linking us to that API documentation. Can you please also confirm the endpoint which you would like us to consider adding?

Please put https://thingproxy.freeboard.io on the whitelist.

API documented on https://github.com/Freeboard/thingproxy#readme

API endpoint is http(s)://thingproxy.freeboard.io/fetch/

https://pdfcrowd.com/api/html-to-pdf-python/

Here's the documentation.

Hello, Please can you whitelist mqtt.by. This is mqtt server on port 1883.

@131raviary Hello. We have added pdfcrowd.com to the allow-list

@boxscores we have added thingproxy.freeboard.io to our allow-list

Thanks PythonAnywhere staff, thingproxy.freeboard.io is accessible.

Hello,

I'm getting a 403 error when trying to access this api via my Flask app. I'm able to access it locally, just not through the app.

I'm wondering if this api could be whitelisted:

api.oikolab.com/weather

Here is the documentation:
https://docs.oikolab.com/#2-weather-data-weather

Thanks in advance

Hi, kindly add the https://apikijangportal.bnm.gov.my/ to the whitelist.

@jfielde -- it looks like you upgraded to a paid account (thanks!) shortly before you posted your message, so you should not be affected by the restrictions on Internet access for free accounts. If you've reloaded your website since the upgrade, then you should be able to access that site. Have you taken a look at the content of the response? Perhaps the 403 is coming from the server you're connecting to.

@changhongchoo -- If you would like the above domains to be considered for the whitelist , please send us a link to the API documentations. Please note we can only whitelist sites with an official public API.

May you kindly add https://open-meteo.com/en/docs/geocoding-api to the whitelist ?

@2sleepy Thank you for your request, can you please confirm the endpoint which you would like us to consider adding to the whitelist?

Helo, can you add whitelist api for "urlshort.in" please?

This is their API Developer Documentations https://urlshort.in/developers

@hmalik About the https://open-meteo.com/en/docs/geocoding-api The end point i'd like you to consider is https://geocoding-api.open-meteo.com/v1/search Thank you

Please add this to whitelist : https://api.douyin.wtf/docs

@Lifetech Thank you for your request. Can you please confirm the endpoint which you would like us to consider adding?, and can you please also provide the official domain for the website. Once we have received the requested information, we will be able to consider your request further.

@hmalik This is fficial domain for the website : douyin.wtf. Please add this in whitelist

Kindly add shutdown-calendar.fly.dev to the whitelist. Thanks upfront

can you add pinecone api : https://docs.pinecone.io/docs/ we got that error MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='controller.us-west1-gcp.pinecone.io', port=443): Max retries exceeded with url: /databa ses (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff0ea0177c0>: Failed to establish a new connection: [Errno 111] Connection refused'))

Kindly add medium.com to whitelisting <br>I want to Scrape through some content. https://developers.medium.com/

Kindly add medium.com to whitelisting <br>I want to Scrape through some content. https://developers.medium.com/

Also link.medium

Also link.medium

can you please add this to the whitelist ? https://qfrucfvqrp17bzk-gifecpm.adb.us-ashburn-1.oraclecloudapps.com/ords/returns/email/email

@Lifetech Thank you for providing us with the official domain for the website. Before we are able to proceed with the request, can you please confirm the endpoint which you would like us to consider adding? Once we have received the requested information, we will be able to consider your request further.

Hello, can you add to whitelist this public API https://api.quran.com/

This is API Developer Documentations https://quran.api-docs.io/

@hmalik This is endpoint : https://api.douyin.wtf

@yurabakai If you would like the above domain to be considered for the whitelist , please send us a link to the API documentation. Please note we can only whitelist sites with an official public API.

@asamoahtekyi Hi, If you would like the above domain to be considered for the whitelist , please send us a link to the API documentation. Please note we can only whitelist sites with an official public API.

please add

https://freeimage.host/page/api

https://freeimage.host/api/1/upload

@abuelnasr70 Hi, If you would like the above domain to be considered for the whitelist , please send us a link to the API documentation. Please note we can only whitelist sites with an official public API.

@lillis Hi, Thank you for your request. Can you please confirm the endpoint which you would like us to consider adding to the whitelist? Can you please also send us the link to the official website.

endpoint https://freeimage.host/api/1/upload

example call

GET http://freeimage.host/api/1/upload/?key=12345&source=http://somewebsite/someimage.jpg&format=json

Neither of those are documentation for the API.

doc https://freeimage.host/page/api endpoint https://freeimage.host/api/1/upload

example call

GET http://freeimage.host/api/1/upload/?key=12345&source=http://somewebsite/someimage.jpg&format=json

doc https://freeimage.host/page/api endpoint https://freeimage.host/api/1/upload

example call

GET http://freeimage.host/api/1/upload/?key=12345&source=http://somewebsite/someimage.jpg&format=json

@lillis - posting the same thing again is not going to make a difference - I have already said that it is not sufficient. We need a link to documentation for the site.

Hi, could you add to whitelist https://store.epicgames.com/ please?

doc https://epicstore-api.readthedocs.io/en/latest/intro.html

@ninuzzomagno Hi, Thank you for your message. If that is the official documentation, can you please send us a direct link from the website to that documentation. Can you please also confirm the endpoint you would like us to consider adding?

Hi! Please consider adding those sites to whitelist:

  • https://toncenter.com (API docs: https://toncenter.com/api/v2/)
  • https://testnet.toncenter.com (https://testnet.toncenter.com/api/v2/)
  • https://tonapi.io/v1/ (https://tonapi.io/swagger-ui)
  • https://testnet.tonapi.io/v1/ (https://testnet.tonapi.io/swagger-ui)

If you need a full list of endpoints I'd like to be whitelisted, that's it (those are exactly same endpoints that are in documentation):

  • https://toncenter.com/api/v2 - /getAddressInformation, /getExtendedAddressInformation, /getWalletInformation, /getTransactions, /getAddressBalance, /getAddressState, /packAddress, /unpackAddress, /getTokenData, /detectAddress, /getMasterchainInfo, /getMasterchainBlockSignatures, /getShardBlockProof, /getConsensusBlock, /lookupBlock, /shards, /getBlockTransactions, /getBlockHeader, /tryLocateTx, /tryLocateResultTx, /tryLocateSourceTx, /getConfigParam, /runGetMethod, /sendBoc, /sendBocReturnHash, /sendQuery, /estimateFee, /jsonRPC
  • https://testnet.toncenter.com/api/v2 - /getAddressInformation, /getExtendedAddressInformation, /getWalletInformation, /getTransactions, /getAddressBalance, /getAddressState, /packAddress, /unpackAddress, /getTokenData, /detectAddress, /getMasterchainInfo, /getMasterchainBlockSignatures, /getShardBlockProof, /getConsensusBlock, /lookupBlock, /shards, /getBlockTransactions, /getBlockHeader, /tryLocateTx, /tryLocateResultTx, /tryLocateSourceTx, /getConfigParam, /runGetMethod, /sendBoc, /sendBocReturnHash, /sendQuery, /estimateFee, /jsonRPC
  • https://tonapi.io/v1 - /account/getBulkInfo, /account/getInfo, /auction/getBids, /auction/getCurrent, /blockchain/getAccount, /blockchain/getBlock, /blockchain/getTransaction, /blockchain/getTransactions, /blockchain/validators, /dns/backresolve, /dns/domains/search, /dns/getInfo, /dns/resolve, /event/getAccountEvents, /event/getEvent, /jetton/getBalances, /jetton/getHistory, /jetton/getInfo, /nft/getCollection, /nft/getCollections, /nft/getItems, /nft/searchItems, /send/boc, /send/estimateTx, /stream/sse/account, /stream/sse/jetton_transfer, /stream/sse/nft_transfer, /stream/sse/test/event, /subscription/getByWallet, /system/time, /trace/getAnnotatedTrace, /trace/getTrace, /wallet/findByPubkey, /wallet/getSeqno, /wallet/getWalletPublicKey
  • https://testnet.tonapi.io/v1 - /account/getBulkInfo, /account/getInfo, /auction/getBids, /auction/getCurrent, /blockchain/getAccount, /blockchain/getBlock, /blockchain/getTransaction, /blockchain/getTransactions, /blockchain/validators, /dns/backresolve, /dns/domains/search, /dns/getInfo, /dns/resolve, /event/getAccountEvents, /event/getEvent, /jetton/getBalances, /jetton/getHistory, /jetton/getInfo, /nft/getCollection, /nft/getCollections, /nft/getItems, /nft/searchItems, /send/boc, /send/estimateTx, /stream/sse/account, /stream/sse/jetton_transfer, /stream/sse/nft_transfer, /stream/sse/test/event, /subscription/getByWallet, /system/time, /trace/getAnnotatedTrace, /trace/getTrace, /wallet/findByPubkey, /wallet/getSeqno, /wallet/getWalletPublicKey

@ratingers Thank you for your message. I can now confirm tonapi.io , testnet.tonapi.io , toncenter.com and testnet.toncenter.com have now been added to the whitelist.

Hola, porfavor podrian agregar a la lista blanca : https://api.cne.cl/ De antemano muchas gracias.

Hello team, is it possible to whitelist https://api.etsy.com? The official API documentation is under https://developers.etsy.com/documentation . Thank you!

hi can you please add this page https://api.cne.cl/ , thanks.

@esmanhoto Hi, Thank you for your request. Can you please confirm the endpoint you would like us to consider adding? Please also send us a direct link to the documentation which states the endpoint you would like us to consider.

@gabrielmussons Hi, Thank you for your request. Can you please send us a link to the official domain? Can you please also confirm the endpoint you would like us to consider adding?

Hey @hmalik, for sure. The endpoint in itself is https://openapi.etsy.com/v3/application/shops/{shop_id}/receipts/{receipt_id}. The documentation is on https://developers.etsy.com/documentation/reference#tag/Shop-Receipt. Is that what you need? The {receipt_id} is variable, and the {shop_id} is a specific one I have. Thank you!

Hi, could you add to whitelist https://finance.rambler.ru/calculators/converter/ please?

Hey @hmalik, Tried submitting earlier but was not successful Can you please add this? https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/ Official doc: https://cfpb.github.io/api/ccdb/api.html

Thanks

@balamurugan Hi, Thank you for your message. I can now confirm www.consumerfinance.gov has been added to the whitelist.

Please white list this api https://ldtax.gov.bd/citizen/nidCheck/

@almaspr3 Hi, If you would like the above domain to be considered for the whitelist , please send us a link to the API documentation and please also send us the link to the official website? Please note we can only whitelist sites with an official public API.

Could you add Pinecone.io to the whitelist https://docs.pinecone.io/docs/quickstart

Pinecone is a vector database API often used in conjunction with openai.api

Sorry double posted by accident.

@jgfriedman99 Hi, Thank you for your message. Can you please confirm the endpoint you would like us to consider adding? Please note the documentation will need to state the endpoint you are requesting.

Hi @hmalik, Pinecone indexes each have their own DNS endpoint. Index endpoints take the following form: https://{index-name}-{project-name}.svc.YOUR_ENVIRONMENT.pinecone.io

For example the endpoint I am trying to reach is presidential-inaugurations-unknown.svc.us-west1-gcp.pinecone.io

Is this enough information? Happy to add more!

One of the criteria for the whitelist is that it should be useful for other free users so, if each user has a different URL, then it's not a candidate for the whitelist.

Oh, so it's not possible to mass whitelist pinecone.io endpoints then? That's a shame, but I understand the reasoning. I'll find another way to store vectors.

Thanks for the quick response!

Hello @hmalik. The endpoint in itself is https://openapi.etsy.com/v3/application/shops/{shop_id}/receipts/{receipt_id}. The documentation is on https://developers.etsy.com/documentation/reference#tag/Shop-Receipt. Is that what you need? The {receipt_id} is variable, and the {shop_id} is a specific one I have. Is it possible to add it? Thank you!

@esmanhoto Thank you for your message. I can now confirm openapi.etsy.com has been added to the allow list.

Can pinecone.io be whitelisted?

docs: https://docs.pinecone.io/docs/overview

endpoint: .pinecone.io

We've updated our process recently, please visit this help page, you'll find a link to the form which you can fill in to request the allowlist addition.

Thanks! Submitted

add https://web.whatsapp.com/ to whitelist

add https://web.whatsapp.com/ to whitelist

We've updated our process recently, please visit this help page, you'll find a link to the form which you can fill in to request the allowlist addition.

hello, can you add to the white list please https://pesni.guru

@unitolog We've updated our process recently, please visit this help page, you'll find a link to the form which you can fill in to request the allowlist addition.

Requesting Whitelist additions for

APIs https://*.planfix.com/tel/api

Public documentations https://planfix.com/help/VoIP_API

Thank you!

@zhekadoe We've updated our process recently, please visit this help page, you'll find a link to the form which you can fill in to request the allowlist addition.

hi, please add https://api-checkout.cinetpay.com the documentation is available at https://docs.cinetpay.com/api/1.0-fr thanks.

@ZAideFormation We've updated our process recently, please visit this help page, you'll find a link to the form which you can fill in to request the allowlist addition.

can you add googleapis to the whitelist

@alexrider We've updated our process recently, please visit this help page, you'll find a link to the form which you can fill in to request the allowlist addition.

Hi guys, Could you whitelist this API: geoipify.whoisxmlapi.com

I believe this an alternate link to an already whitelisted API. The library used uses this link and I cannot change it.

The Docs: https://geoipify.whoisxmlapi.com/api/documentation/making-requests

@omcodedthis, please use the form linked on this help page.

Okay, I have sent the form! Thanks!

Hi, could you whitelist this website? https://music.youtube.com/

Here's the documentation: https://ytmusicapi.readthedocs.io/en/stable/reference.html

I've already filled up the form.

@linustws No need to ask here.

Hi, could you whitelist this website? https://rocketapi.io/

Here's the documentation: https://docs.rocketapi.io/

@AlexDy, please use the form linked on this help page.

Hi, could someone add this website to the whitelist? www.tennisexplorer.com

I'm getting this error: <urlopen error Tunnel connection failed: 403 Forbidden>. I need access to this website to obtain some info by web scraping with BeautifulSoup4.

Thanks.

@martin974, please use the form linked on this help page.

See https://help.pythonanywhere.com/pages/403ForbiddenError/

Hello. I would like to request a whitelist addition :)

WEBSITE: https://www.wroclaw.pl/

API: https://www.wroclaw.pl/open-data/api

I need to send requests like this: https://www.wroclaw.pl/open-data/api/action/datastore_search?resource_id=17308285-3977-42f7-81b7-fdd168c210a2

MY EMAIL: cichyymail@gmail.com

Unfortunately I don't think there is any documentation available in english as it is an API of Wrocław's (a city in Poland) public communication system.

Please use the form linked on this help page.

Please help adding "api.stability.ai" to whitelist I am interested in the following endpoint https://api.stability.ai/v1/generation/stable-diffusion-v1-5/text-to-image

You can use the form linked on this help page to request an addition to the list. However, I see that you have a paid account -- that means that you can access any external website, you're not restricted to the list.

Dear PythonAnywhere Team,

I have developed an API that efficiently scrapes data from the following link: https://portal.amfiindia.com/DownloadNAVHistoryReport_Po.aspx?frmdt=20-Jun-2023&todt=20-Jun-2023. The API returns the data in JSON format.

To ensure seamless functionality, I kindly request you to add https://portal.amfiindia.com to the whitelist.

Thank you for your attention and assistance.

Best regards,

Jhenil

You can use the form linked on this help page to request an addition to the list, but keep in mind, that we would add only a site that exposes a public API.

could add please https://bluelytics.com.ar/#!/api to whitelist, thanks

We have a new procedure for adding sites to the allow-list -- see this help page.

Hello. I would like to request a whitelist addition :)

WEBSITE: https://www.islomapi.uz/

API: https://islomapi.uz/api/present/week

I need to send requests like this: https://islomapi.uz/api/present/week?region=Qarshi

MY EMAIL: abdulloboboqulov17@gmail.com

Unfortunately I don't think there is any documentation available in english as it is an API of Uzbekiston's (a city in Tashkent) public communication system.

Hello. I would like to request a whitelist addition :)

WEBSITE: https://www.islom.uz/

API: https://islomapi.uz

I need to send requests like this: https://islomapi.uz/api/present/week?region=Qarshi

MY EMAIL: abdulloboboqulov17@gmail.com

Unfortunately I don't think there is any documentation available in english as it is an API of Uzbekiston's (a city in Tashkent) public communication system.

We have a new procedure for adding sites to the allow-list -- see this help page.