[SERIOUS] Does anyone has WordAI API Code in Python?

Mukeshwar Singh

Regular Member
Joined
Mar 12, 2020
Messages
480
Reaction score
153
I just subscribed for their 3 days trial and I'm running low on time as I am writing this. I tried spinning the articles using an Auto Spinner plugin but it takes so long and gives a 504 Error. Does anyone have code for using wordai API in python?

Really appreciate the reply. Also, I have searched everywhere but couldn't find one. Here is the PHP code they give- https://wordai.com/api.php
 
Why python? Do you know python, if so it will be easy to transfer this over.

- simply post
I just subscribed for their 3 days trial and I'm running low on time as I am writing this. I tried spinning the articles using an Auto Spinner plugin but it takes so long and gives a 504 Error. Does anyone have code for using wordai API in python?

Really appreciate the reply. Also, I have searched everywhere but couldn't find one. Here is the PHP code they give- https://wordai.com/api.php
Why python? Do you know python? If so should be super easy to transfer over.
- All it does is a POST request to http://wordai.com/users/turing-api.php
- Post params s=$text&quality=$quality&email=$email&pass=$pass&output=json

You can also test in postman and get different code for different apps there, try this but don't have a log in so can test, but just follow their PHP curl snippet and translate it over to python, you likely can even do that with google/StackOverflow

You can try
import requests

url = "http://wordai.com/users/turing-api.php?s=text&quality=quality&email=email&pass=pass&output=json"

payload = ""
headers = {
'Content-Type': 'application/json; charset=utf-8'
}

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

print(response.text)
 
Yes, I know python and I have created multiple automation scripts but I never worked with API or PHP. Also, you code returns the error- Error Authenticating. Either Bad Username/Password Or Your Account Has Outstanding Payments Due

I'm pretty sure my account is fine!
 
Python:
import requests

url = 'http://wordai.com/users/turing-api.php'

data = {
    's': 'your text here',
    'quality': 'Readable',
    'email': '[email protected]',
    'pass': 'yourpassinplaintetxt',
    'output': 'json'
}

r = requests.post(url, data)

print(r.json())
 
Python:
import requests

url = 'http://wordai.com/users/turing-api.php'

data = {
    's': 'your text here',
    'quality': 'Readable',
    'email': '[email protected]',
    'pass': 'yourpassinplaintetxt',
    'output': 'json'
}

r = requests.post(url, data)

print(r.json())
Well, this will work
 
Python:
import requests

url = 'http://wordai.com/users/turing-api.php'

data = {
    's': 'your text here',
    'quality': 'Readable',
    'email': '[email protected]',
    'pass': 'yourpassinplaintetxt',
    'output': 'json'
}

r = requests.post(url, data)

print(r.json())
I just received a code from the friend like this.... Thanks both of you <3
 
Back
Top