convex-http-actions

Configure Convex HTTP actions with routing, authentication, CORS, and webhook verification.

Updated Feb 26, 2026
One-click install
npx skills add https://github.com/NitzanSelwyn/MomentumTrackerAdmin --skill convex-http-actions-nitzanselwyn
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convex-http-actions
Source: https://github.com/NitzanSelwyn/MomentumTrackerAdmin/tree/main/.claude/skills/Convex%20HTTP%20Actions
Command: npx skills add https://github.com/NitzanSelwyn/MomentumTrackerAdmin --skill convex-http-actions-nitzanselwyn

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Reduce the complexity of building reliable HTTP endpoints and webhook handlers for Convex applications.

Core Features & Use Cases

  • Routing: define HTTP endpoints, path parameters, and methods to support webhooks and external API calls.
  • Security & Compliance: implement API key and Bearer token authentication, CORS, and webhook signature verification.
  • Integration: connect HTTP actions to internal mutations and queries for end-to-end workflows.
  • Use Case: build a webhook receiver for a payment processor that validates signatures and updates order status in Convex.

Quick Start

Configure Convex HTTP Actions to define endpoints, routes, authentication, and webhook handling for a representative integration.

Frequently Asked Questions about convex-http-actions

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create secure Convex HTTP endpoints for external webhooks?

Create secure Convex HTTP endpoints by defining routing, implementing authentication, and enforcing webhook signature verification. This approach ensures external API calls and webhook handlers validate payloads and connect securely to internal mutations.

How do I set up CORS and authentication for Convex HTTP actions?

Set up CORS and authentication for Convex HTTP actions by configuring API key or Bearer token validation within your endpoint definitions. This enforces secure patterns and robust error handling for external requests.

Can I route path parameters and methods in Convex webhook receivers?

You can route path parameters and methods in Convex webhook receivers to support external API calls. This routing capability allows HTTP actions to direct incoming webhook payloads to the correct internal mutations and queries.

How do I connect Convex HTTP actions to internal queries and mutations?

Connect Convex HTTP actions to internal queries and mutations by defining integration workflows within your endpoint logic. This enables end-to-end workflows where validated HTTP requests directly update your application database.

Does Convex support webhook signature verification for payment processors?

Convex supports webhook signature verification for payment processors through configurable HTTP actions. You can build a webhook receiver that validates signatures and updates order status in Convex, ensuring secure payment integration.

What is the best way to handle routing and error handling in Convex HTTP endpoints?

The best way to handle routing and error handling in Convex HTTP endpoints is to enforce secure patterns and robust error handling across your action definitions. This reduces complexity and meets end-to-end endpoint development requirements.