Skip to main content

salamoonder-py

This is our official Python SDK, created and maintained by the official Salamoonder team!

salamoonder-js

This is our official JavaScript SDK, created and mainted by the official Salamoonder team!
Here are some easy to use examples for each SDK, so you can see how they work and follow along without trouble.
from salamoonder-py import client

api = client(api_key="YOUR_API_KEY_HERE")

task_id = api.createTask(
    task_type="IncapsulaReese84Solver", 
    website="https://www.pokemoncenter.com/", 
    submit_payload=True
)

solution = salamoonder_api.getTaskResult(
    api_key="YOUR_API_KEY_HERE", 
    task_id=task_id
)

print("Solution:", solution)