Adopt

Pointer puppies and dogs in Middletown, New York

Looking for a Pointer puppy or dog in Middletown, New York? Adopt a Pet can help you find an adorable Pointer near you.

Picture of Pointer

Adopt a Pointer near you in Middletown, New York

We don't see any Pointers available for adoption right now, but new adoptable pets are added every day. Try a different search below!

Or, how about these Pointers in cities near Middletown, New York

These Pointers are available for adoption close to Middletown, New York.
We'll also keep you updated on Vega's adoption status with email updates.
Photo of Vega

Vega

Pointer

Male, Adult
Newburgh, NY
Size
(when grown) Large 61-100 lbs (28-45 kg)
Details
Not good with kids, Not good with dogs, Not good with cats, Needs experienced adopter, House-trained, Spayed or Neutered, Shots are up-to-date,
Story
Vega is about 4-5 yrs old. He isn't quick to trust but loves his toys and cuddles once he does. He needs time to get to know someone but it makes it all worth it.
We'll also keep you updated on Buck's adoption status with email updates.
Photo of Buck

Buck

Pointer

Male, 2 yrs 1 mo
Ferndale, NY
Size
(when grown) Med. 26-60 lbs (12-27 kg)
Details
Spayed or Neutered,
Story
Buck is a Pointer mix who was left outside our shelter in the middle of the night on the coldest night of the year. When he was found he was scared and thin. After he warmed up from the frigid temperatures and he began to trust us, his heart is as warm as ever. He loves to be around people. He is dog selective though, so a meeting would be required. Buck loves to run and play in our play yards.To apply for this animal please go to our website, www.catskillanimalrescue.com and complete an application. All adoptions include spay/neuter, 1st Distemper shot, all animals over 3 months will have current rabies shot. Dogs will be microchipped.
We'll also keep you updated on Mercedes's adoption status with email updates.
Photo of Mercedes

Mercedes

Pointer Pit Bull Terrier

Female, Puppy
Ringwood, NJ
Size
(when grown) Med. 26-60 lbs (12-27 kg)
Details
Good with kids, Good with dogs, Good with cats, Spayed or Neutered, Shots are up-to-date,
Story
Meet Mercedes! This beautiful little girl is a 5.5 month old pointer/pit mix! She is super friendly and loves just about everyone and everything she meets. She loves to snuggle and never turns down a good belly rub. She loves to play and loves to learn! She would make a great addition to a family and a family with an active lifestyle! She is currently located down South at our sister shelters and available for pre-adoption. We do transports to NJ once a month. She can't wait to find her forever home! If you are interested in adopting please apply through our website www.southernpawsinc.org/adopt or send us an email at southernpawsrescue@gmail.com!
We'll also keep you updated on Bea 22 lbs's adoption status with email updates.
Photo of Bea 22 lbs

Bea 22 lbs

Pointer Terrier (Unknown Type, Small)

Female, 4 yrs
Spring Valley, NY
Size
(when grown) Small 25 lbs (11 kg) or less
Details
Good with kids, Good with dogs, Spayed or Neutered, Shots are up-to-date,
Story
Incredibly Sweet little Bea was running around rural Georgia with her sidekick for several weeks after apparently being dumped. Everybody in the area said they were friendly, but no one knew them so they called animal control. The girls were very bonded at first, but we feel like their first love is people. They want to love people and be loved so badly but when they didn’t have any people, they became very attached to each other. Her sidekick has now found her forever home and it’s Miss Bea’s turn now. She’s exceptionally sweet and outgoing. She loves to go for walks and rides in the car. She also loves to snuggle on the couch. Bea is 22 pounds and between four and five years old. WE ARE ONLY GUESSING AT HER BREED! She does not really have a JRT temperament but she has the size and cute little short tail. She is up-to-date on vaccines, spayed and heartworm tested negative. She appears to be a very healthy and happy girl. She had a couple of accidents the first day in her foster home but now she’s doing very well with house training if you would like to be Miss Bea’s hero and the center of her world, please email omlc7@hotmail.com or Dogs4mylife@gmail.com and we will send you our information and application. If you do not see a response, please check your spam folder.
We'll also keep you updated on Katie Dixon's adoption status with email updates.
Photo of Katie Dixon

Katie Dixon

English Pointer

Female, Adult
Rockaway, NJ
Size
(when grown) Large 61-100 lbs (28-45 kg)
Details
Good with kids, Good with dogs, Good with cats, Spayed or Neutered,
Story
Meet Katie! This beautiful 2-year-old, 43-lb suspected Pointer mix is everything you could want in a companion. Rescued from Georgia, where life isn’t always kind to animals, Katie hasn’t let her past dim her sweet and loving personality. She is incredibly friendly and truly a fantastic all-around dog. Katie gets along wonderfully with all people, adores kids, enjoys the company of other dogs, and is even good with cats. She is both crate trained and leash trained, making her an easy addition to almost any home. Katie is microchipped, spayed, and up to date on all vaccines—ready to start her happily ever after with a family of her own! Apply for Katie at EHRDOGS.ORG (function () { // Only on animal detail pages if (!/\/animals\/detail/i.test(location.pathname)) return; // Debounce to avoid double-fire (touchend + click, etc.) var lastNavAt = 0; function toFullSize(url) { try { var u = new URL(url, location.href); u.searchParams.delete('width'); u.searchParams.delete('height'); return u.toString(); } catch (e) { return url || ''; } } function looksLikeAnimalPhoto(url) { return /\/pictures\/animals\/\d+\/\d+\/[^?#]+\.(jpg|jpeg|png|gif)/i.test(url || ''); } function handler(e) { var el = e.target; if (!el) return; // Find the closest anchor or image in the click path var a = el.closest ? el.closest('a') : null; var img = el.closest ? el.closest('img') : null; var url = ''; // Prefer anchor href if it points to an animal photo if (a && a.getAttribute) { var href = a.getAttribute('href') || ''; if (href && (href.indexOf('/pictures/animals/') !== -1 || looksLikeAnimalPhoto(href))) { url = href; } } // Otherwise fall back to the image src if (!url && img && img.getAttribute) { var src = img.getAttribute('src') || ''; if (src && (src.indexOf('/pictures/animals/') !== -1 || looksLikeAnimalPhoto(src))) { url = src; } } if (!url) return; // Absolute URL + full-size version try { url = new URL(url, location.href).toString(); } catch (_) {} url = toFullSize(url); // Stop PrettyPhoto (and any other delegated click handlers) e.preventDefault(); e.stopPropagation(); if (e.stopImmediatePropagation) e.stopImmediatePropagation(); // Debounce var now = Date.now(); if (now - lastNavAt < 500) return; lastNavAt = now; // SAME TAB navigation to the full-size image location.href = url; } // Capture phase is the key: we get the event before PrettyPhoto. ['click', 'pointerup', 'touchend'].forEach(function (evt) { document.addEventListener(evt, handler, true); }); })(); February 17, 2026, 6:42 pm
We'll also keep you updated on Cooper Lizman's adoption status with email updates.
Photo of Cooper Lizman

Cooper Lizman

Pointer Labrador Retriever

Male, Adult
Rockaway, NJ
Size
(when grown) Med. 26-60 lbs (12-27 kg)
Details
Good with kids, Good with dogs, House-trained, Spayed or Neutered,
Story
Ruff start? Yes. Ruff round the edges? Sure. Hidden gem ready to be discovered? 100%.  Cooper is a member of Eleventh Hour Rescue’s Diamond in the Ruff Program:  a sweet, playful dog who needs a little polishing, but we know his brilliance  will shine through with patience, love, a little training, and a home of his own. In return for your willingness to see Cooper’s potential and change his story,  and thanks to a private donor, COOPER'S ADOPTION FEE HAS BEEN FULLY SPONSORED! All you need to provide is the love and patience to help him sparkle. COPPER'S STORY: Cooper is currently 2.5 years old and 60lbs.  He was found abandoned and skinny on the side of the road, with a scar on his neck from an embedded collar. While it appears Cooper hasn't had the best life, you would never know it from his appreciative nature and friendly disposition! Cooper loves to "hug" his people for affection, and is a very cuddly dog. He has a bunch of energy and would make a fantastic companion for an active owner. Cooper would be best as an only dog for now until he has time to decompress into a home.  Cooper loves people but since he is so energetic, older or considerate kids would be a better fit for this sweet boy.  He is also house trained, and very well crate trained- He doesn’t make a PEEP! Cooper is fully vaccinated, chipped, and neutered. Apply to adopt COOPER LIZMAN at www.ehrdogs.org (function () { // Only on animal detail pages if (!/\/animals\/detail/i.test(location.pathname)) return; // Debounce to avoid double-fire (touchend + click, etc.) var lastNavAt = 0; function toFullSize(url) { try { var u = new URL(url, location.href); u.searchParams.delete('width'); u.searchParams.delete('height'); return u.toString(); } catch (e) { return url || ''; } } function looksLikeAnimalPhoto(url) { return /\/pictures\/animals\/\d+\/\d+\/[^?#]+\.(jpg|jpeg|png|gif)/i.test(url || ''); } function handler(e) { var el = e.target; if (!el) return; // Find the closest anchor or image in the click path var a = el.closest ? el.closest('a') : null; var img = el.closest ? el.closest('img') : null; var url = ''; // Prefer anchor href if it points to an animal photo if (a && a.getAttribute) { var href = a.getAttribute('href') || ''; if (href && (href.indexOf('/pictures/animals/') !== -1 || looksLikeAnimalPhoto(href))) { url = href; } } // Otherwise fall back to the image src if (!url && img && img.getAttribute) { var src = img.getAttribute('src') || ''; if (src && (src.indexOf('/pictures/animals/') !== -1 || looksLikeAnimalPhoto(src))) { url = src; } } if (!url) return; // Absolute URL + full-size version try { url = new URL(url, location.href).toString(); } catch (_) {} url = toFullSize(url); // Stop PrettyPhoto (and any other delegated click handlers) e.preventDefault(); e.stopPropagation(); if (e.stopImmediatePropagation) e.stopImmediatePropagation(); // Debounce var now = Date.now(); if (now - lastNavAt < 500) return; lastNavAt = now; // SAME TAB navigation to the full-size image location.href = url; } // Capture phase is the key: we get the event before PrettyPhoto. ['click', 'pointerup', 'touchend'].forEach(function (evt) { document.addEventListener(evt, handler, true); }); })(); February 17, 2026, 9:04 am

Search for a Pointer puppy or dog

Use the search tool below to browse adoptable Pointer puppies and adults Pointer in Middletown, New York.

Pointer puppies and dogs in nearby cities

Related breeds in Middletown, New York

Pointer shelters & rescues in Middletown, New York

There are animal shelters and rescues that focus specifically on finding great homes for Pointer puppies in Middletown, New York. Browse these Pointer rescues and shelters below.

Here are a few organizations closest to you:

Shelter

18.9 miles

Town of Newburgh Animal Shelter

645 Gidney Avenue, Newburgh, NY 12550

Pet Types: cats, birds, dogs, rabbits, small animals

More an arrow icon

Shelter

25.1 miles

Catskill Animal Rescue, Inc.

263 Old Monticello Road, Ferndale, NY 12734

Pet Types: cats, birds, dogs, farm animals, horses, rabbits, reptiles, small animals

More an arrow icon

Rescue

26.1 miles

Southern Paws Inc.

PO Box 174, Ringwood, NJ 07456

Pet Types: dogs

More an arrow icon

Rescue

30.5 miles

One More Last Chance - NY transport

Spring Valley, NY 10977

Pet Types: cats, dogs

More an arrow icon

Rescue

36.5 miles

Eleventh Hour Rescue

P.O. Box 218, Rockaway, NJ 07866

Pet Types: cats, dogs

More an arrow icon

Rescue

37.7 miles

Peace4Paws Inc.

Westwood, NJ 07675

Pet Types: dogs

More an arrow icon

Rescue

41.8 miles

Paws Crossed Animal Rescue Inc.

100 Warehouse Lane South, Elmsford, NY 10523

Pet Types: cats, dogs

More an arrow icon

Rescue

45.3 miles

Doggie Harmony New England

Flanders, NJ 07836

Pet Types: dogs

More an arrow icon

Rescue

45.5 miles

South Coast Sato Rescue - New York Transport Stop

White Plains, NY 10604

Pet Types: dogs

More an arrow icon

Rescue

48.8 miles

Animal Rescue Foundation - NJ

Ridgefield, NJ 07657

Pet Types: cats, dogs

More an arrow icon

Looking for a specific shelter or rescue?

If you're not seeing what you're looking for, try our shelter and rescue search. We have more than 17,000 organizations in our database with furry pals waiting for a new home!

magnifying glass with cat and dog

Want to learn more about adopting a Pointer puppy or dog?

We've got all the info you need on adopting and caring for a Pointer puppy. Check out the links below for everything you ever wanted to know about Pointer puppies and adults.

Pointer basics

clipboard with list

Where do Pointers come from? How many types of Pointers are there? From the history of the breed to question about average height, weight and size, brush up on these basic facts about the Pointer.

Learn More an arrow icon