Skip to main content

Endpoint

POST https://api.gumroad.com/v2/products
Create a new product for the authenticated user.

Authentication

Requires OAuth scope: edit_products

Request Body

This endpoint is currently not implemented and will return a 404 error. Product creation must be done through the Gumroad dashboard.

Response

This endpoint returns a 404 error response.

Example Request

curl -X POST "https://api.gumroad.com/v2/products" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My New Product",
    "price": 2999
  }'

Error Response

{
  "error": "Not Found"
}
Product creation via API is not currently supported. Please create products through the Gumroad dashboard.

Build docs developers (and LLMs) love