How to accurately return the image link as markdown?

# SIHOO Ergonomic Office Chair

### ID:
001

### Product Name:
SIHOO Ergonomic Office Chair

### Brand:
SIHOO

### Model Name:
SIHOO Computer Chair

### Product Code:
100068212471

### Product Weight:
25.02kg

### Country of Origin:
Mainland China

### SKU:
S50-101

### Fabric Material:
Mesh

### Category:
Swivel Chair

### Maximum Backrest Angle:
120-155 degrees (inclusive)

### Armrest Type:
Rotatable and Height Adjustable Armrests

### Height Adjustment:
Pneumatic Height Adjustment

### Additional Components:
With Casters, Fixed Headrest, Adjustable Headrest

### Five-Star Base Material:
Nylon/Polyamide Fiber

### Assembly Required:
Assembly Required

### Image Links:
![Product Image 1](https://img11.360buyimg.com/n1/jfs/t1/236136/10/5358/133563/656d354bFa7018077/fbab84b5358ae8a9.jpg.avif)
![Product Image 2](https://img11.360buyimg.com/n1/jfs/t1/230996/33/2035/117283/6548ba9bF107a41a6/6329e9b23ec15ed9.jpg.avif)
![Product Image 3](https://img11.360buyimg.com/n1/jfs/t1/183496/23/40903/96496/6548ba9bF9e39a4cf/4bebb2f353032bb5.jpg.avif)

I try to upload this file and searching images. But it seems didn’t work. I hope the bot can play the role of customer service support, tell me the relevant information accurately when I ask about this product, and send me the image link in markdown form when I ask for pictures, so that I can display them directly.

Is there any demonstration of this kind of program? What’s wrong with my Markdown structure?

Hello Caspian,

First, I’m sorry for the delay. Somehow I missed your message, maybe due to holidays at the end of the year.

What you want to accomplish can be achieved easily in our platform, but you should structure the item listing in JSON format, not markdown. This will allow you to attach key properties like image URLs as metadata. Metadata, whether at the document or section level, is automatically returned with search results.

So, to use the example you provided, you want to structure it like this:

{
  "documentId": "sihoo_office_chair",
  "title": "SIHOO Ergonomic Office Chair",
  "metadataJson": "{\"urls\":[\"https://img11.360buyimg.com/n1/jfs/t1/236136/10/5358/133563/656d354bFa7018077/fbab84b5358ae8a9.jpg.avif\", \"https://img11.360buyimg.com/n1/jfs/t1/230996/33/2035/117283/6548ba9bF107a41a6/6329e9b23ec15ed9.jpg.avif\", \"https://img11.360buyimg.com/n1/jfs/t1/183496/23/40903/96496/6548ba9bF9e39a4cf/4bebb2f353032bb5.jpg.avif\"], \"id\": \"001\", \"product_code\": 100068212471}",
  "section": [
    {
      "title": "Product Name",
      "text": "SIHOO Ergonomic Office Chair"
    },
    {
      "title": "Brand",
      "text": "SIHOO"
    },
    {
      "title": "Product Code",
      "text": "100068212471"
    },
    {
      "title": "Product Weight",
      "text": "25.02kg"
    },
    {
      "title": "Country of Origin",
      "text": "Mainland China"
    },
    {
      "title": "SKU",
      "text": "S50-101"
    },
    {
      "title": "Fabric Material",
      "text": "Mesh"
    },
    {
      "title": "Category",
      "text": "Swivel Chair"
    },
    {
      "title": "Maximum Backrest Angle",
      "text": "120-155 degrees (inclusive)"
    },
    {
      "title": "Armrest Type",
      "text": "Rotatable and Height Adjustable Armrests"
    },
    {
      "title": "Height Adjustment",
      "text": "Pneumatic Height Adjustment"
    },
    {
      "title": "Additional Components",
      "text": "With Casters, Fixed Headrest, Adjustable Headrest"
    },
    {
      "title": "Five-Star Base Material",
      "text": "Nylon/Polyamide Fiber"
    },
    {
      "title": "Assembly Required",
      "text": "Assembly Required"
    }
  ]
}

Then, running a query in our search console, you’ll see the search URLs come attached to every search result (Click on “Details” for a search result to see the document-level metadata):

Let me know if this helps.

thanks,
Amin

Further Reading