# Get value point Gets a value point by the SKU within a project for administration. Endpoint: GET /v2/project/{project_id}/admin/items/value_points/sku/{item_sku} Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 - `item_sku` (string, required) Item SKU. Example: "booster_mega_1" ## Response 200 fields (application/json): - `sku` (string) Unique item ID. The SKU may contain only lowercase and uppercase Latin alphanumeric characters, periods, dashes, and underscores. Example: "booster_mega_1" - `name` (object,null) Object with localizations for item’s name. Accepts value in one of two formats: two-letter lowercase language codes (e.g., en) or five-character language codes (e.g., en-US). While both formats are accepted as input, responses return two-letter lowercase language codes. When both options for the same language are provided (e.g., en and en-US), the last provided value is stored. You can find the full list of supported languages in the [documentation](/doc/shop-builder/references/supported-languages/). - `description` (object,null) Object with localizations for item’s description. Accepts value in one of two formats: two-letter lowercase language codes (e.g., en) or five-character locale codes (e.g., en-US). While both formats are accepted as input, responses return two-letter lowercase language codes. When both options for the same language are provided (e.g., en and en-US), the last provided value is stored. You can find the full list of supported languages in the [documentation](/doc/shop-builder/references/supported-languages/). - `long_description` (object,null) Object with localizations for long description of item. Accepts value in one of two formats: two-letter lowercase language codes (e.g., en) or five-character locale codes (e.g., en-US). While both formats are accepted as input, responses return two-letter lowercase language codes. When both variants for the same language are provided (e.g., en and en-US), the last provided value is stored. You can find the full list of supported languages in the [documentation](/doc/shop-builder/references/supported-languages/). - `media_list` (array) Item's additional assets such as screenshots, gameplay video and so on. Example: [{"type":"image","url":"https://cdn3.xsolla.com/img/misc/images/71ab1e12126f2103e1868076f0acb21a.jpg"}] - `media_list.type` (string) Type of media: image/video. Enum: "image", "video" - `media_list.url` (string) Resource file. Example: "https://cdn3.xsolla.com/img/misc/images/71ab1e12126f2103e1868076f0acb21a.jpg" - `type` (string) Type of item. - `image_url` (string) - `is_enabled` (boolean) - `order` (integer) Defines arrangement order. Example: 1 - `can_delete` (boolean) Whether a value point can be deleted. If false, you can not delete the value point as there are one or more reward chains in which it is used. To delete the value point, first [delete](https://developers.xsolla.com/api/shop-builder/operation/admin-delete-reward-chain/) all reward chains containing it. If true, the value point is not used in any reward chain and you can [delete](https://developers.xsolla.com/api/shop-builder/operation/admin-delete-value-point/) it. - `is_clan` (boolean) Whether the value point is used in clan reward chains. Example: true ## Response 401 fields (application/json): - `statusCode` (integer) Example: 401 - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred"