API SEARCH OTZEM Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › API SEARCH OTZEM This topic has 1 reply, 2 voices, and was last updated 3 years, 11 months ago by Ernest Marcinko. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts July 4, 2022 at 10:27 pm #38305 SzigetParticipant Hey! we are trying to use the search API but we see only 7 results in the API (actually there are more). What can I do? We use this link: wp-json/ajax-search-pro/v0/search?s= Thank you July 5, 2022 at 1:57 pm #38312 Ernest MarcinkoKeymaster Hi, It looks like as if the posts_per_page variable is accounted for, and the results are trimmed. Can you try this custom code: add_filter("asp_query_args", "asp_query_args_change", 10, 2); function asp_query_args_change($args, $search_id) { if ( wp_is_json_request() ) { $args['posts_per_page'] = 9999; } return $args; } Let me know if that changes anything. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In