Works with the tools
you already use
Create beautiful share links for content from any platform, build automations with our API, or connect AI agents via MCP.
Share links for any platform
Paste a URL, get a beautiful share link. Peeksy automatically pulls the right metadata for each platform.
Notion
Create beautiful share links for your Notion pages and databases — auto-fetch titles, icons, and cover images.
Webflow
Turn any Webflow page into a rich preview link that captures your design work.
Framer
Share Framer prototypes and sites with previews that represent your work.
Airtable
Create share links for Airtable bases that show the data behind the link.
YouTube
Branded share links for YouTube videos with custom thumbnails and metadata.
Substack
Share newsletters with preview links that drive subscriptions.
Ghost
Create share links for Ghost blog posts with featured images and author info.
Medium
Share Medium articles with previews that show reading time and claps.
Build anything on top of Peeksy
TypeScript SDK, MCP Server for AI agents, and a full REST API — use whichever fits your workflow.
@peeksy/sdk
Requires Pro+ plan
Official TypeScript/JavaScript SDK. Create links, run SEO audits, generate OG images — all from your code.
- Full TypeScript types
- Links, analytics, SEO, OG images
- Works in Node.js, browsers, edge runtimes
import { PeeksyClient } from "@peeksy/sdk";
const peeksy = new PeeksyClient({ token: "YOUR_TOKEN" });
// Create a link
const link = await peeksy.links.create({
url: "https://yoursite.com/blog/post",
title: "My Blog Post",
});
// Generate an OG image
const og = await peeksy.og.generate({
linkId: link.id,
mode: "ai-copy",
template: "gradient",
});
console.log(og.imageUrl);MCP Server
Requires Business plan
Connect Claude, Cursor, or any MCP-compatible AI agent to your Peeksy account. Let your AI manage links and fetch analytics.
- Compatible with Claude, Cursor, and more
- 7 built-in tools for links & analytics
- Standard MCP 2024-11-05 protocol
// In your Claude/Cursor MCP config:
{
"mcpServers": {
"peeksy": {
"url": "https://api.peeksy.space/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
// Available tools:
// list_links, create_link, update_link
// delete_link, get_analytics_summary
// list_templates, get_user_profileREST API
Requires Pro+ plan
Full REST API access. Build custom integrations, automate workflows, or connect Peeksy to any tool that supports HTTP.
- RESTful JSON API
- JWT Bearer token auth
- All endpoints — links, analytics, OG, SEO
# Create a link
curl -X POST https://api.peeksy.space/links \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com","title":"My Link"}'
# Run an SEO audit
curl -X POST https://api.peeksy.space/seo/LINK_ID/audit \
-H "Authorization: Bearer YOUR_TOKEN"
# Generate an OG image
curl -X POST https://api.peeksy.space/og/generate \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{"linkId":"LINK_ID","mode":"ai-copy"}'Ready to get started?
Sign up free — no credit card required. Upgrade when you need the API or AI features.
Already have an account? Sign in