I'm looking for a python code that uses the [POST] https://api.typeform.com/forms API to create a new form on Typeform
s = requests.post("https://api.typeform.com/forms", headers={"Authorization": "Bearer {}".format(token)}, data=json.dumps(js2))
The problem I am encountering is in creating the json for the post request that contains the form details. I'm looking for a very basic example without any welcome or thankyou screens, logics, jumps etc.
The minimum you need to create a typeform via API is just the title of a form.
Like this: