List a new service on the marketplace
cURL
curl --request POST \ --url https://api.example.com/services
name
description
category
price
location
curl -X POST https://api.midasprotocol.org/services \ -H "Authorization: Bearer pp_your_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Translation Service", "description": "Real-time text translation in 50+ languages", "category": "translation", "priceAmount": 5, "priceCurrency": "USDC", "priceType": "per_request" }'
{ "id": "uuid", "name": "Translation Service", "price": { "amount": "5.00", "currency": "USDC", "type": "per_request" }, "status": "ACTIVE" }