GET
/
styles
/
{id}
curl --request GET \
  --url https://api.buybase.ai/styles/{id} \
  --header 'authorization: <authorization>'
{
  "success": true,
  "style": {
    "id": "style_12345",
    "text": "Minimalist casual style with neutral colors like black, white, and beige. Preference for cotton fabrics, clean lines, and simple designs without logos or patterns.",
    "profile_id": "prof_67890",
    "created_at": "2023-09-15T14:22:31Z",
    "updated_at": "2023-09-15T14:22:31Z"
  },
  "code": "STYLE_RETRIEVED"
}

Headers

authorization
string
required

Your API key for authorization.

Path Parameters

id
string
required

The ID of the style to retrieve.

Response

success
boolean

Indicates whether the operation was successful.

style
object

The style object containing:

  • id: The style ID
  • text: The style description
  • profile_id: The ID of the profile this style is attached to
  • created_at: Timestamp when the style was created
  • updated_at: Timestamp when the style was last updated
code
string

A code indicating the result of the operation. Possible values:

  • STYLE_RETRIEVED: Style retrieved successfully
  • STYLE_NOT_FOUND: Style not found
error
string

Error message if the request fails.

{
  "success": true,
  "style": {
    "id": "style_12345",
    "text": "Minimalist casual style with neutral colors like black, white, and beige. Preference for cotton fabrics, clean lines, and simple designs without logos or patterns.",
    "profile_id": "prof_67890",
    "created_at": "2023-09-15T14:22:31Z",
    "updated_at": "2023-09-15T14:22:31Z"
  },
  "code": "STYLE_RETRIEVED"
}