# Get list of loyalty points in program Returns the list of loyalty points in the program. Endpoint: GET /projects/{project_id}/admin/programs/{loyalty_program_id}/loyalty_points 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 project name and in the browser address bar when working with a project. The URL has the following format: https://publisher.xsolla.com//projects/. Example: 44056 - `loyalty_program_id` (string, required) Loyalty program ID. To get the ID, use the Get loyalty program information API call. Example: "3fa85f64-5717-4562-b3fc-2c963f66afa6" ## Response 200 fields (application/json): - `id` (string) Loyalty point ID. - `program_id` (string) ID of the loyalty program the point belongs to. - `name` (object,null) Object with localizations for the loyalty point's name. Keys are two-letter lowercase language codes (e.g., en). You can find the full list of supported languages in the documentation. - `name.en` (string,null) English - `name.ar` (string,null) Arabic - `name.bg` (string,null) Bulgarian - `name.cn` (string,null) Chinese (Simplified) - `name.cs` (string,null) Czech - `name.de` (string,null) German - `name.es` (string,null) Spanish (Spain) - `name.fr` (string,null) French - `name.he` (string,null) Hebrew - `name.it` (string,null) Italian - `name.ja` (string,null) Japanese - `name.ko` (string,null) Korean - `name.pl` (string,null) Polish - `name.pt` (string,null) Portuguese - `name.ro` (string,null) Romanian - `name.ru` (string,null) Russian - `name.th` (string,null) Thai - `name.tr` (string,null) Turkish - `name.tw` (string,null) Chinese (Traditional) - `name.vi` (string,null) Vietnamese - `name.km` (string,null) Khmer - `name.id` (string,null) Indonesian - `name.lo` (string,null) Lao - `name.my` (string,null) Burmese - `name.ph` (string,null) Filipino - `name.ne` (string,null) Nepali - `description` (object,null) Object with localizations for the loyalty point's description. Keys are two-letter lowercase language codes (e.g., en). You can find the full list of supported languages in the documentation. - `icon_url` (string) Image URL. - `exchange_rate` (object) Monetary value of the loyalty point in different currencies. - `exchange_rate.rates` (array) List of exchange rates for each currency. - `exchange_rate.rates.code` (string) Currency code in the ISO 4217 format. - `exchange_rate.rates.rate` (number) Monetary value of one loyalty point in the specified currency. - `linked_sku` (object) Item SKUs for which the loyalty points are granted when purchased. Contains the SKU array. The default value "*" means the loyalty points are granted for all items. - `amount_of_points_per_dollar` (integer) Number of loyalty points the user receives for each unit of currency spent. ## Response 401 fields