convex-http-actions

Define and manage HTTP endpoints and webhook processing for Convex applications.

Updated Feb 8, 2026
One-click install
npx skills add https://github.com/Pratikkadam254/LinkedinLeadGen --skill convex-http-actions-pratikkadam254
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convex-http-actions
Source: https://github.com/Pratikkadam254/LinkedinLeadGen/tree/main/.claude/skills/convex-http-actions
Command: npx skills add https://github.com/Pratikkadam254/LinkedinLeadGen --skill convex-http-actions-pratikkadam254

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Convex HTTP Actions enables developers to build and manage HTTP endpoints, webhook handlers, and external API integrations for Convex applications.

Core Features & Use Cases

  • HTTP routing for GET/POST endpoints
  • PathPrefix routing and dynamic parameters
  • Webhook signature verification and authentication
  • CORS configuration and request handling
  • Example workflows for external service integrations

Quick Start

Define a health endpoint and a webhook route to begin integrating with external services.

Frequently Asked Questions about convex-http-actions

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

FAQPage Schema
How do I handle incoming webhooks in a Convex application?

To handle incoming webhooks in a Convex application, you define HTTP endpoints that process external requests. This enables secure webhook routing, signature verification, and API key authentication for external integrations.

What is the best way to set up CORS headers for Convex HTTP endpoints?

The best way to set up CORS headers for Convex HTTP endpoints is to configure them directly within your route definitions. This ensures secure cross-origin request handling alongside your GET and POST endpoint routing.

Can I use Bearer token authentication with Convex HTTP actions?

Yes, you can use Bearer token authentication with Convex HTTP actions. The system supports both API key and Bearer token auth to secure your GET and POST endpoints against unauthorized external requests.

How do I route external API requests using pathPrefix in Convex?

You route external API requests in Convex by using pathPrefix routing to direct traffic to specific handlers. This allows dynamic parameter handling and organized request management across your Convex projects.

Does Convex support signed webhook verification for external service integrations?

Yes, Convex supports signed webhook verification for external service integrations. You can validate incoming payloads to ensure request authenticity and secure your application endpoints from malicious traffic.