v1

latestOpenAPI 3.1.02026-07-247620.1 KB

Fetch Profile

This API route allows a developer application to fetch the authenticated user's public ShopMy profile information. This route requires the user to permission your app for the read_profile scope.

get/Profile

Response

200

successboolean required

Example response

{
  "success": true,
  "profile": {
    "id": 123,
    "name": "Jane Creator",
    "username": "janecreator",
    "bio": "Fashion, beauty, and home finds.",
    "image": "https://example.com/profile.jpg",
    "social_links": [
      "https://www.instagram.com/janecreator"
    ],
    "country_code": "US",
    "url": "https://shopmy.us/janecreator"
  }
}