### Get Full Item Details from Search Results Source: https://github.com/take-kun/mercapi/blob/main/README.md Retrieve the complete details of a specific Mercari item by using an item object obtained from a search query. This is useful for accessing more comprehensive information about a listing. ```python item = results.items[0] full_item = await item.full_item() print(full_item.description) ``` -------------------------------- ### Get Full Item Details by ID Source: https://github.com/take-kun/mercapi/blob/main/README.md Directly retrieve the full details of a Mercari item using its unique item ID. This method bypasses the need for a search query and is efficient for accessing a known listing. ```python item = await m.item('m90925725213') print(item.description) ``` -------------------------------- ### Search Mercari Items Source: https://github.com/take-kun/mercapi/blob/main/README.md Perform a search query on Mercari and retrieve a list of items. This snippet demonstrates how to initialize Mercapi, perform a search, and access basic item information and metadata. ```python from mercapi import Mercapi m = Mercapi() results = await m.search('sharpnel') print(f'Found {results.meta.num_found} results') for item in results.items: print(f'Name: {item.name}\nPrice: {item.price}\n') ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.