Skip to main content

Retrieve an item by ID

GET 

https://api.styld.ai/api/store/:storeId/items/:itemId

Retrieve an item by ID

Request

Path Parameters

    storeId stringrequired
    itemId stringrequired

Responses

Item retrieved successfully

Schema

    id string
    title string
    description string
    link string
    image string
    store string
    tags string[]

    properties

    object

    property name* string

Authorization: x-api-key

name: x-api-keytype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.styld.ai/api/store/:storeId/items/:itemId");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("x-api-key", "<API_KEY_VALUE>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.styld.ai/api
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!