> ## Documentation Index
> Fetch the complete documentation index at: https://docs.msu.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get representative NFT item history mission list

> Retrieve a list of representative history missions for a specific NFT item using the item asset key. Pagination is supported, with 20 items per page.

## Path parameters

<ParamField path="assetKey" type="string" required>
  The assetKey to query
</ParamField>

## Query parameters

<ParamField query="cursor" type="string">
  cursor
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="properties">
    <ResponseField name="historyMissions" type="array">
      historyMissions
    </ResponseField>

    <ResponseField name="nextCursor" type="string">
      nextCursor
    </ResponseField>

    <ResponseField name="hasMore" type="boolean">
      hasMore
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://openapi.msu.io/v1rc1/items/{assetKey}/history-missions/representative?cursor=string' \
    --header 'Content-Type: application/json' \
    --header 'x-nxopen-api-key: YOUR_API_KEY'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://openapi.msu.io/v1rc1/items/{assetKey}/history-missions/representative?cursor=string', {
    method: 'GET',
    headers: {
      'Content-Type': 'application/json',
      'x-nxopen-api-key': 'YOUR_API_KEY'
    }
  });
  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  url = "https://openapi.msu.io/v1rc1/items/{assetKey}/history-missions/representative"
  params = {
    "cursor": "string"
  }
  headers = {
    "x-nxopen-api-key": "YOUR_API_KEY"
  }

  response = requests.get(url, params=params, headers=headers)
  data = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "historyMissions": [],
      "nextCursor": "string",
      "hasMore": false
    }
  }
  ```
</ResponseExample>
