Skip to main content
GET
/
v1
/
marketplace
/
listings
Search marketplace listings
curl --request GET \
  --url https://api.zeroclick.am/v1/marketplace/listings
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "slug": "<string>",
    "title": "<string>",
    "description": "<string>",
    "category": "<string>",
    "listingState": "draft",
    "price": {
      "amount": 123,
      "unit": "<string>"
    },
    "runContract": {
      "method": "GET",
      "endpointPath": "<string>",
      "inputSchema": {},
      "outputSchema": {},
      "requestExampleJson": "<string>",
      "responseExampleJson": "<string>"
    },
    "tags": [
      "<string>"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.zeroclick.am/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

query
string

Search term (matches title and description)

category
string

Filter by category (exact match)

tag
string

Filter by tag

Response

200 - application/json

List of published listings

id
string<uuid>
userId
string<uuid>
slug
string

Short unique identifier

title
string
description
string | null
category
string | null
listingState
enum<string>
Available options:
draft,
published,
paused,
archived
price
object
runContract
object
tags
string[] | null
createdAt
string<date-time>
updatedAt
string<date-time>