Documentation Index Fetch the complete documentation index at: https://apidocs.salamoonder.com/llms.txt
Use this file to discover all available pages before exploring further.
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!
salamoonder-go This is our official GO 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.
salamoonder.py
salamoonder.js
import asyncio
from salamoonder import Salamoonder
async def main ():
async with Salamoonder( 'YOUR_API_KEY' ) as client:
# Create and solve a Kasada captcha task
task_id = await client.task.createTask( 'KasadaCaptchaSolver' ,
pjs_url = 'https://example.com/script.js' ,
cd_only = "false"
)
# Poll for the result
solution = await client.task.getTaskResult(task_id)
print ( 'Solution:' , solution)
asyncio.run(main())