add_action('rest_api_init', function () { register_rest_route('ssapi/v1', '/products/', [ 'methods' => 'GET', 'callback' => 'get_ss_products', 'permission_callback' => '__return_true' ]); }); function get_ss_products() { $api_key = '8fc862a3-83f6-4fc5-9942-b5014dce2aa4'; $response = wp_remote_get('https://api.ssactivewear.com/v2/products', [ 'headers' => [ 'Authorization' => 'Bearer ' . $api_key ] ]); if (is_wp_error($response)) { return new WP_Error('api_error', 'API request failed', ['status' => 500]); } $body = wp_remote_retrieve_body($response); return json_decode($body, true); }