Skip to main content
POST
/
api
/
marketplace
/
{id}
/
acquire
Acquire a marketplace item (reference or copy)
curl --request POST \
  --url https://your-instance.example.com/api/marketplace/{id}/acquire \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requestEditable": true
}
'
{
  "success": true,
  "message": "Prompt copied to your library",
  "data": {
    "acquired": {
      "id": "64d2f9c5e8a1d4e001a0b1c5",
      "itemType": "prompt",
      "type": "copy",
      "isEditable": true,
      "publishedItemId": "64d2f9c5e8a1d4e001a0b1c2",
      "originalItemId": "64a1b2c3d4e5f6001234567a",
      "copiedItemId": "64a1b2c3d4e5f60012345700",
      "acquiredAt": "2026-05-20T15:04:01.135Z"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
requestEditable
boolean

When true and the listing permits editable references, the acquired link allows the recipient to edit.

Response

Item acquired

Returned after POST /api/marketplace/{id}/acquire. Templates cannot be acquired via this endpoint — see import-to-automations.

success
enum<boolean>
required
Available options:
true
data
object
required
message
string