# Get Detail Story

## Get Story Detail Default

Request

{% tabs %}
{% tab title="HTTP" %}

```http
GET /v1/stories/6582c2e34aceefb0a1139035/info HTTP/1.1
Host: story.api.mimiland.io
Content-Type: application/json
mm-client-id: mml
mm-user-id: 6552e9dd1f835ac7ca4ba3ec
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("mm-client-id", "mml");
myHeaders.append("mm-user-id", "6552e9dd1f835ac7ca4ba3ec");
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://story.api.mimiland.io/v1/stories/6582c2e34aceefb0a1139035/info", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
```

{% endtab %}
{% endtabs %}

## Get Story Detail Comment

Request

{% tabs %}
{% tab title="HTTP" %}

```http
GET /v1/stories/6582c2e34aceefb0a1139035/cmt HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 65646591714177dcf46462dd
mm-client-id: mml
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const myHeaders = new Headers();
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-user-id", "65646591714177dcf46462dd");
myHeaders.append("mm-client-id", "mml");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://story.api.mimiland.io/v1/stories/6582c2e34aceefb0a1139035/cmt", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
```

{% endtab %}
{% endtabs %}

## Get Story Detail Images

Request

{% tabs %}
{% tab title="HTTP" %}

```http
GET /v1/stories/657fb66f4aceefb0a1138fae/img HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 65646591714177dcf46462dd
mm-client-id: mml
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const myHeaders = new Headers();
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-user-id", "65646591714177dcf46462dd");
myHeaders.append("mm-client-id", "mml");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://story.api.mimiland.io/v1/stories/657fb66f4aceefb0a1138fae/img", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
```

{% endtab %}
{% endtabs %}

## Get Story Detail Static

Request

{% tabs %}
{% tab title="HTTP" %}

```http
GET /v1/stories/6582c2e34aceefb0a1139035/static HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 65646591714177dcf46462dd
mm-client-id: mml
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const myHeaders = new Headers();
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-user-id", "65646591714177dcf46462dd");
myHeaders.append("mm-client-id", "mml");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://story.api.mimiland.io/v1/stories/6582c2e34aceefb0a1139035/static", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
```

{% endtab %}
{% endtabs %}

## Get Story Detail Love

Request

{% tabs %}
{% tab title="HTTP" %}

```http
GET /v1/stories/6584f600e613b98ab86f6345/love HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 65646591714177dcf46462dd
mm-client-id: mml
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const myHeaders = new Headers();
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-user-id", "65646591714177dcf46462dd");
myHeaders.append("mm-client-id", "mml");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://story.api.mimiland.io/v1/stories/6584f600e613b98ab86f6345/love", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mimiland.com/mimiland-core-services/social-story/api-references/get-detail-story.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
