Skip to main content
GET
/
products
List products
curl --request GET \
  --url https://api.crevio.co/v1/products \
  --header 'Authorization: <api-key>'
[
  {
    "id": 123,
    "name": "<string>",
    "slug": "<string>",
    "status": "draft",
    "description": "<string>",
    "bodyHtml": "<string>",
    "buttonCta": "<string>",
    "prefixId": "<string>",
    "sellerAccount": {
      "id": 123,
      "name": "<string>",
      "subdomain": "<string>",
      "avatar": {
        "filename": "<string>",
        "contentType": "<string>",
        "byteSize": 123,
        "createdAt": "2023-11-07T05:31:56Z",
        "signedId": "<string>",
        "src": "<string>",
        "srcSet": "<string>"
      },
      "linkInBioPage": {
        "id": 123,
        "title": "<string>",
        "description": "<string>"
      },
      "socialLinks": [
        {
          "id": 123,
          "name": "<string>",
          "url": "<string>",
          "platform": "<string>",
          "position": 123,
          "active": true
        }
      ],
      "referralUrl": "<string>",
      "availableSupportEmail": "<string>"
    },
    "mediaItems": [
      {
        "id": 123,
        "sourceType": "<string>",
        "url": "<string>",
        "provider": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "file": {
          "filename": "<string>",
          "contentType": "<string>",
          "byteSize": 123,
          "createdAt": "2023-11-07T05:31:56Z",
          "signedId": "<string>",
          "src": "<string>",
          "srcSet": "<string>"
        },
        "contentType": "<string>",
        "embedHtml": "<string>"
      }
    ],
    "reviews": [
      {
        "id": 123,
        "rating": 3,
        "content": "<string>",
        "customerName": "<string>",
        "customerImage": {
          "filename": "<string>",
          "contentType": "<string>",
          "byteSize": 123,
          "createdAt": "2023-11-07T05:31:56Z",
          "signedId": "<string>",
          "src": "<string>",
          "srcSet": "<string>"
        },
        "position": 123,
        "prefixId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "seo": {
      "title": "<string>",
      "description": "<string>",
      "keywords": "<string>"
    },
    "priceVariants": [
      {
        "id": 123,
        "name": "<string>",
        "amount": 123,
        "currency": "<string>",
        "billingType": "one_time",
        "amountType": "<string>",
        "discountedFromAmount": 123,
        "presetAmount": 123,
        "minimumAmount": 123,
        "maximumAmount": 123,
        "recurringInterval": "<string>",
        "intervalCount": 123,
        "trialPeriodDays": 123,
        "revokeAfterDays": 123,
        "hidden": true,
        "archived": true,
        "waitlist": true,
        "position": 123,
        "prefixId": "<string>",
        "benefits": [
          "<string>"
        ],
        "seatQuantity": 123,
        "isDefault": true,
        "isPayWhatYouWant": true,
        "hasFreeTrial": true,
        "isQuantityLimited": true
      }
    ],
    "url": "<string>",
    "hasMedia": true
  }
]

Authorizations

Authorization
string
header
required

API key in the format: Bearer {api_token}

Response

List of products

id
integer
name
string
slug
string
status
enum<string>
Available options:
draft,
active,
archived
description
string
bodyHtml
string
buttonCta
string
prefixId
string
sellerAccount
object
mediaItems
object[]
reviews
object[]
seo
object
priceVariants
object[]
url
string<uri>
hasMedia
boolean