create_product
Add a new item for sale on Partle. Provide product name, price, and optional details to generate a listing with a shareable URL.
Instructions
Create a new product listing on Partle. Requires an API key.
Use this when the user wants to add an item for sale. Each call creates
a new record — never call twice with identical input expecting only one
record (it is not idempotent). For updates to existing products,
use update_product.
Args:
api_key: Partle API key, prefix pk_. Generate at
https://partle.rubenayla.xyz/account.
name: Product name. Required, 1–200 chars.
description: Long-form product description. Optional.
price: Price in whole currency units, not cents. e.g. 15.99
means €15.99. Max 100000. Omit for "ask the seller".
currency: Currency symbol. Defaults to €. Use $, £, etc.
url: Link to the merchant's product page. Optional but recommended.
store_id: ID of the store this product belongs to. Omit for a
personal listing not tied to any store.
Returns:
The created product record including its new id and canonical
partle_url. Share partle_url with the user.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | ||
| name | Yes | ||
| description | No | ||
| price | No | ||
| currency | No | € | |
| url | No | ||
| store_id | No |