# _ _ _ _ # | | (_) (_) | # ___ ___ | |__ ___ ___ ___ ___| |_ _ _ # / __/ _ \| '_ \ / _ \/ __| \ \ / / | __| | | | # | (_| (_) | | | | __/\__ \ |\ V /| | |_| |_| | # \___\___/|_| |_|\___||___/_| \_/ |_|\__|\__, | # __/ | # |___/ # Cohesivity Cohesivity is an infrastructure platform, similar to OpenRouter but for backend services instead of models. Instead of signing up on Supabase, AWS, or GCP individually, a single API provisions databases, auth, storage, and more. Cohesivity handles lifecycle and billing; one integration, many services. **Think of it as "Stripe for agent infrastructure."** --- ## Available services database | realtime | vercel-hosting | object-storage | social-login | cloudflare-workers | redis | google-generative-language-api | youtube-data-api | resend-api | parallel-api | google-weather-api | google-geocoding-api Full documentation: https://cohesivity.ai/llms.txt Per-service docs: https://cohesivity.ai/offerings/ --- ## Quick start Create an account and save credentials: curl -s -X POST https://cohesivity.ai/api/genesis > .cohesivity The `.cohesivity` file contains API keys and a full quick-reference for all endpoints. Read it after creation. --- ## How the API works ### Create account POST https://cohesivity.ai/api/genesis No body, no auth. Returns plain-text with your keys: tenant_id=swift-fox-sleeping coh_management_key=coh_man_xxxxxxxxxxxxxxxxxxxx coh_application_key=coh_app_xxxxxxxxxxxxxxxxxxxx # ... full endpoint reference, auth patterns, and next steps ### Provision resources POST https://cohesivity.ai/api/resources Authorization: Bearer { "resources": ["database", "vercel-hosting"] } → { "success": true, "results": [{ "resource": "database", "status": "active" }, ...] } Single resource also works: `POST https://cohesivity.ai/api/resources/database` ### Use it POST https://cohesivity.ai/edge/database?key= { "query": "SELECT * FROM users WHERE id = ?", "params": [1] } → { "rows": [{ "id": 1, "name": "Alice" }], "rowCount": 1 } --- ## Documentation - Full documentation: https://cohesivity.ai/llms-full.txt - Quick reference: https://cohesivity.ai/llms.txt - Per-service docs: https://cohesivity.ai/offerings/