This message was deleted.
# replication-troubleshooting
s
This message was deleted.
e
Hi. Api key for what source
r
for airbyte api
e
you can login airbyte api without an api key example of a api call in python
Copy code
import requests

url = "<http://localhost:8000/api/v1/workspaces/list>"

payload={}
headers = {}

response = requests.request("POST", url, headers=headers, data=payload, timeout=360)

print(response.text)
r
Not in the newest version… I had to remove login and password in .env file
e
you can also use in the newest version without login - the code I gave you is from my local machine in the newest version
If you wish to do login - correct you need to define user name and password in .env and pass as url params