v1

latestOpenAPI 3.1.02026-07-247620.1 KB

Fetch Collections

This API route allows a developer application to fetch a user's ShopMy collections. This route requires the user to permission your app for the read_collections OR write_collections scope.

get/Collections

Response

200

successboolean required

Example response

{
  "success": true,
  "collections": [
    {
      "id": 12345,
      "name": "Summer Favorites",
      "description": "My favorite pieces for summer.",
      "image": "https://example.com/collection.jpg",
      "social_links": [
        "https://www.instagram.com/example"
      ],
      "Section_id": 123,
      "url": "https://shopmy.us/collections/12345"
    }
  ]
}