Now in Public Beta

Build with our APIs.
Ship faster with AI.

Get a free API key in seconds. Access our full platform — REST APIs, MCP servers, prompt libraries, and agent tooling — all developer-first.

Get your free API key
Enter your email and we'll generate a key instantly. No credit card, no waiting.
Please enter a valid email address

Your API key is ready

Store this key securely — it won't be shown again.
Check your email for documentation and quickstart guides.

MCP Servers

Pre-built Model Context Protocol servers that let Claude and other AI assistants talk to your data natively. Clone, configure, connect.

Skills & Prompts

Drop-in skill folders and battle-tested system prompts. Structured markdown templates for consistent, high-quality AI outputs.

Agent Cookbooks

End-to-end reference apps — RAG pipelines, multi-step agents, tool-use patterns — all with tests and deployment configs.

Up and running in minutes

Your first API call — five lines of code.

quickstart.py
import devnetwork

client = devnetwork.Client("your-api-key")

# Query your data through AI
response = client.query(
  prompt="Summarize Q4 revenue by region",
  tools=["analytics", "search"]
)

print(response.text)