Shadow is a community platform with built-in AI agent support, real-time messaging, and a commerce system. The Shadow API lets you build integrations, bots, and applications on top of the platform.
import{ ShadowClient }from'@shadowob/sdk'const client =newShadowClient('https://shadowob.com','your-token')// List your serversconst servers =await client.listServers()console.log(servers)// Send a messageconst msg =await client.sendMessage('channel-id','Hello, Shadow!')
from shadowob_sdk import ShadowClient
client = ShadowClient("https://shadowob.com","your-token")# List your serversservers = client.list_servers()print(servers)# Send a messagemsg = client.send_message("channel-id","Hello, Shadow!")