mock-requests-CatAPI 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. mock_requests_catapi-0.0.2/LICENSE +1 -0
  2. mock_requests_catapi-0.0.2/MANIFEST.in +3 -0
  3. mock_requests_catapi-0.0.2/PKG-INFO +55 -0
  4. mock_requests_catapi-0.0.2/README.md +36 -0
  5. mock_requests_catapi-0.0.2/mock_requests/__init__.py +1 -0
  6. mock_requests_catapi-0.0.2/mock_requests/data/ .json +0 -0
  7. mock_requests_catapi-0.0.2/mock_requests/data/rc_106a5b1d398387cd8f349af1.json +1 -0
  8. mock_requests_catapi-0.0.2/mock_requests/data/rc_2075243103f0860bebb9a30d.json +1 -0
  9. mock_requests_catapi-0.0.2/mock_requests/data/rc_3c4db6918cea431e9a696cc3.json +1 -0
  10. mock_requests_catapi-0.0.2/mock_requests/data/rc_505561865ab906fc36788d6a.json +1 -0
  11. mock_requests_catapi-0.0.2/mock_requests/data/rc_53d23e5c9049c53cad215f31.json +1 -0
  12. mock_requests_catapi-0.0.2/mock_requests/data/rc_5d1ff3321c1046fe10f86295.json +1 -0
  13. mock_requests_catapi-0.0.2/mock_requests/data/rc_644b4ea763c900bb1ebaca9b.json +1 -0
  14. mock_requests_catapi-0.0.2/mock_requests/data/rc_6a0c866381cf6f51f6a3c002.json +1 -0
  15. mock_requests_catapi-0.0.2/mock_requests/data/rc_9bb58e15a5309cd2ebae9af2.json +1 -0
  16. mock_requests_catapi-0.0.2/mock_requests/data/rc_a332a9a1051c6e5c12d4a7e1.json +1 -0
  17. mock_requests_catapi-0.0.2/mock_requests/data/rc_ae7f3668ec01e94255e4a47f.json +1 -0
  18. mock_requests_catapi-0.0.2/mock_requests/data/rc_b58daaa9f7baa877e4cef30e.json +1 -0
  19. mock_requests_catapi-0.0.2/mock_requests/data/rc_b89de8566a0c50dc3ab73661.json +1 -0
  20. mock_requests_catapi-0.0.2/mock_requests/data/rc_d000f9ca48cd0722ec2634ec.json +1 -0
  21. mock_requests_catapi-0.0.2/mock_requests/data/rc_d0689941a91439da4673b87a.json +1 -0
  22. mock_requests_catapi-0.0.2/mock_requests/data/rc_ddd6d186a1502a122d756d5a.json +1 -0
  23. mock_requests_catapi-0.0.2/mock_requests/data/rc_e93341eba0e81c6a20ecf8eb.json +1 -0
  24. mock_requests_catapi-0.0.2/mock_requests/data/rc_eb1aa9e4c11da0b0b5571c83.json +1 -0
  25. mock_requests_catapi-0.0.2/mock_requests/mock_requests.py +162 -0
  26. mock_requests_catapi-0.0.2/mock_requests_CatAPI.egg-info/PKG-INFO +55 -0
  27. mock_requests_catapi-0.0.2/mock_requests_CatAPI.egg-info/SOURCES.txt +31 -0
  28. mock_requests_catapi-0.0.2/mock_requests_CatAPI.egg-info/dependency_links.txt +1 -0
  29. mock_requests_catapi-0.0.2/mock_requests_CatAPI.egg-info/requires.txt +3 -0
  30. mock_requests_catapi-0.0.2/mock_requests_CatAPI.egg-info/top_level.txt +1 -0
  31. mock_requests_catapi-0.0.2/pyproject.toml +3 -0
  32. mock_requests_catapi-0.0.2/setup.cfg +34 -0
@@ -0,0 +1 @@
1
+ MIT License placeholder
@@ -0,0 +1,3 @@
1
+ include README.md
2
+ include LICENSE
3
+ include mock_requests/data/*.json
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: mock-requests-CatAPI
3
+ Version: 0.0.2
4
+ Summary: mock requests: pre-cached per-URL; missing URLs fetched and cached automatically.
5
+ Home-page: https://example.com/mock-requests-restcountries
6
+ Author: Martin Oman
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Testing
12
+ Classifier: Topic :: Internet :: WWW/HTTP
13
+ Requires-Python: >=3.8
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Provides-Extra: dev
17
+ Requires-Dist: build; extra == "dev"
18
+ Dynamic: license-file
19
+
20
+ # mock-requests
21
+
22
+ A mock for CAT API:
23
+ - Uses **packaged JSONs** for common URLs
24
+ - If a URL isn't cached, it **fetches live once** and caches to `~/.cache/mock_requests`
25
+
26
+ ## Local usage
27
+
28
+ ```bash
29
+ python -m venv .venv
30
+ source .venv/bin/activate # Windows: .venv\Scripts\activate
31
+ pip install -U pip build
32
+ pip install -e ".[dev]"
33
+
34
+ ## Bulk priming
35
+
36
+ - Prime many URLs into **user cache** (and optionally copy into package data):
37
+
38
+ ```bash
39
+ # By default this will make real requests; disable with MOCK_REQUESTS_OFFLINE=1.
40
+ python scripts/bulk_prime.py --urls-file scripts/seed_urls.txt --to-package
41
+ ```
42
+
43
+ ## Runtime behavior
44
+
45
+ Resolution order for a URL:
46
+ 1. **Package data** (`mock_requests/data/*.json`) — fastest
47
+ 2. **User cache** (`~/.cache/mock_requests/*.json`)
48
+ 3. **Live fetch** (unless `MOCK_REQUESTS_OFFLINE=1`), then save to user cache
49
+ 4. Else: return 404-like mock response
50
+
51
+ ## Safety knobs
52
+
53
+ - Set `MOCK_REQUESTS_OFFLINE=1` to **disable** live fetches (e.g., CI).
54
+ - Set `MOCK_REQUESTS_TIMEOUT=30` to adjust HTTP timeout seconds.
55
+ - Set `MOCK_REQUESTS_USER_CACHE_DIR` to customize cache directory.
@@ -0,0 +1,36 @@
1
+ # mock-requests
2
+
3
+ A mock for CAT API:
4
+ - Uses **packaged JSONs** for common URLs
5
+ - If a URL isn't cached, it **fetches live once** and caches to `~/.cache/mock_requests`
6
+
7
+ ## Local usage
8
+
9
+ ```bash
10
+ python -m venv .venv
11
+ source .venv/bin/activate # Windows: .venv\Scripts\activate
12
+ pip install -U pip build
13
+ pip install -e ".[dev]"
14
+
15
+ ## Bulk priming
16
+
17
+ - Prime many URLs into **user cache** (and optionally copy into package data):
18
+
19
+ ```bash
20
+ # By default this will make real requests; disable with MOCK_REQUESTS_OFFLINE=1.
21
+ python scripts/bulk_prime.py --urls-file scripts/seed_urls.txt --to-package
22
+ ```
23
+
24
+ ## Runtime behavior
25
+
26
+ Resolution order for a URL:
27
+ 1. **Package data** (`mock_requests/data/*.json`) — fastest
28
+ 2. **User cache** (`~/.cache/mock_requests/*.json`)
29
+ 3. **Live fetch** (unless `MOCK_REQUESTS_OFFLINE=1`), then save to user cache
30
+ 4. Else: return 404-like mock response
31
+
32
+ ## Safety knobs
33
+
34
+ - Set `MOCK_REQUESTS_OFFLINE=1` to **disable** live fetches (e.g., CI).
35
+ - Set `MOCK_REQUESTS_TIMEOUT=30` to adjust HTTP timeout seconds.
36
+ - Set `MOCK_REQUESTS_USER_CACHE_DIR` to customize cache directory.
@@ -0,0 +1 @@
1
+ from .mock_requests import get
File without changes
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "8 - 16", "metric": "4 - 7"}, "id": "sibe", "name": "Siberian", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Siberian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/siberian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/siberian", "temperament": "Curious, Intelligent, Loyal, Sweet, Agile, Playful, Affectionate", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "The Siberians dog like temperament and affection makes the ideal lap cat and will live quite happily indoors. Very agile and powerful, the Siberian cat can easily leap and reach high places, including the tops of refrigerators and even doors. ", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Moscow Semi-longhair, HairSiberian Forest Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Siberian_(cat)", "hypoallergenic": 1, "reference_image_id": "3bkZAjRh1"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "8 - 13", "metric": "4 - 6"}, "id": "cymr", "name": "Cymric", "vetstreet_url": "http://www.vetstreet.com/cats/cymric", "temperament": "Gentle, Loyal, Intelligent, Playful", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "The Cymric is a placid, sweet cat. They do not get too upset about anything that happens in their world. They are loving companions and adore people. They are smart and dexterous, capable of using his paws to get into cabinets or to open doors.", "life_span": "8 - 14", "indoor": 0, "lap": 1, "alt_names": "Spangle", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 5, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cymric_(cat)", "hypoallergenic": 0, "reference_image_id": "3dbtapCWM"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "6 - 12", "metric": "3 - 5"}, "id": "tonk", "name": "Tonkinese", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Tonkinese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/tonkinese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/tonkinese", "temperament": "Curious, Intelligent, Social, Lively, Outgoing, Playful, Affectionate", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "Intelligent and generous with their affection, a Tonkinese will supervise all activities with curiosity. Loving, social, active, playful, yet content to be a lap cat", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Tonk", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Tonkinese_(cat)", "hypoallergenic": 0, "reference_image_id": "KBroiVNCM"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "4 - 9", "metric": "2 - 4"}, "id": "bamb", "name": "Bambino", "temperament": "Affectionate, Lively, Friendly, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Bambino is a breed of cat that was created as a cross between the Sphynx and the Munchkin breeds. The Bambino cat has short legs, large upright ears, and is usually hairless. They love to be handled and cuddled up on the laps of their family members.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 1, "hairless": 1, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 1, "wikipedia_url": "https://en.wikipedia.org/wiki/Bambino_cat", "hypoallergenic": 0, "reference_image_id": "5AdhMjeEu"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "6 - 13", "metric": "3 - 6"}, "id": "buri", "name": "Burmilla", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmilla.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/burmilla", "temperament": "Easy Going, Friendly, Intelligent, Lively, Playful, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Burmilla is a fairly placid cat. She tends to be an easy cat to get along with, requiring minimal care. The Burmilla is affectionate and sweet and makes a good companion, the Burmilla is an ideal companion to while away a lonely evening. Loyal, devoted, and affectionate, this cat will stay by its owner, always keeping them company.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Burmilla", "hypoallergenic": 0, "reference_image_id": "jvg3XfEdC"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "12 - 18", "metric": "5 - 8"}, "id": "mcoo", "name": "Maine Coon", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/MaineCoon.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/maine-coon", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/maine-coon", "temperament": "Adaptable, Intelligent, Loving, Gentle, Independent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "They are known for their size and luxurious long coat Maine Coons are considered a gentle giant. The good-natured and affable Maine Coon adapts well to many lifestyles and personalities. She likes being with people and has the habit of following them around, but isn\u2019t needy. Most Maine Coons love water and they can be quite good swimmers.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Coon Cat, Maine Cat, Maine Shag, Snowshoe Cat, American Longhair, The Gentle Giants", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Maine_Coon", "hypoallergenic": 0, "reference_image_id": "OOD3VXAQn"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "12 - 20", "metric": "5 - 9"}, "id": "ragd", "name": "Ragdoll", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ragdoll.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ragdoll", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ragdoll", "temperament": "Affectionate, Friendly, Gentle, Quiet, Easygoing", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Ragdolls love their people, greeting them at the door, following them around the house, and leaping into a lap or snuggling in bed whenever given the chance. They are the epitome of a lap cat, enjoy being carried and collapsing into the arms of anyone who holds them.", "life_span": "12 - 17", "indoor": 0, "lap": 1, "alt_names": "Rag doll", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ragdoll", "hypoallergenic": 0, "reference_image_id": "oGefY4YoG"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "5 - 11", "metric": "2 - 5"}, "id": "rblu", "name": "Russian Blue", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/RussianBlue.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/russian-blue-nebelung", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/russian-blue", "temperament": "Active, Dependent, Easy Going, Gentle, Intelligent, Loyal, Playful, Quiet", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "Russian Blues are very loving and reserved. They do not like noisy households but they do like to play and can be quite active when outdoors. They bond very closely with their owner and are known to be compatible with other pets.", "life_span": "10 - 16", "indoor": 0, "lap": 1, "alt_names": "Archangel Blue, Archangel Cat", "adaptability": 3, "affection_level": 3, "child_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 1, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Russian_Blue", "hypoallergenic": 1, "reference_image_id": "Rhj-JsTLP"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "7 - 15", "metric": "3 - 7"}, "id": "amis", "name": "Australian Mist", "temperament": "Lively, Social, Fun-loving, Relaxed, Affectionate", "origin": "Australia", "country_codes": "AU", "country_code": "AU", "description": "The Australian Mist thrives on human companionship. Tolerant of even the youngest of children, these friendly felines enjoy playing games and being part of the hustle and bustle of a busy household. They make entertaining companions for people of all ages, and are happy to remain indoors between dusk and dawn or to be wholly indoor pets.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "Spotted Mist", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 4, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Mist", "hypoallergenic": 0, "reference_image_id": "_6x-3TiCA"}
@@ -0,0 +1 @@
1
+ [{"weight": {"imperial": "7 - 10", "metric": "3 - 5"}, "id": "abys", "name": "Abyssinian", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Abyssinian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/abyssinian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/abyssinian", "temperament": "Active, Energetic, Independent, Intelligent, Gentle", "origin": "Egypt", "country_codes": "EG", "country_code": "EG", "description": "The Abyssinian is easy to care for, and a joy to have in your home. They\u2019re affectionate cats and love both people and other animals.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 3, "dog_friendly": 4, "energy_level": 5, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Abyssinian_(cat)", "hypoallergenic": 0, "reference_image_id": "0XYvRd7oD"}, {"weight": {"imperial": "7 - 10", "metric": "3 - 5"}, "id": "aege", "name": "Aegean", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/aegean-cat", "temperament": "Affectionate, Social, Intelligent, Playful, Active", "origin": "Greece", "country_codes": "GR", "country_code": "GR", "description": "Native to the Greek islands known as the Cyclades in the Aegean Sea, these are natural cats, meaning they developed without humans getting involved in their breeding. As a breed, Aegean Cats are rare, although they are numerous on their home islands. They are generally friendly toward people and can be excellent cats for families with children.", "life_span": "9 - 12", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 4, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Aegean_cat", "hypoallergenic": 0, "reference_image_id": "ozEvzdVM-"}, {"weight": {"imperial": "7 - 16", "metric": "3 - 7"}, "id": "abob", "name": "American Bobtail", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanBobtail.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-bobtail", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-bobtail", "temperament": "Intelligent, Interactive, Lively, Playful, Sensitive", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "American Bobtails are loving and incredibly intelligent cats possessing a distinctive wild appearance. They are extremely interactive cats that bond with their human family with great devotion.", "life_span": "11 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Bobtail", "hypoallergenic": 0, "reference_image_id": "hBXicehMA"}, {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "acur", "name": "American Curl", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanCurl.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-curl", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-curl", "temperament": "Affectionate, Curious, Intelligent, Interactive, Lively, Playful, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Distinguished by truly unique ears that curl back in a graceful arc, offering an alert, perky, happily surprised expression, they cause people to break out into a big smile when viewing their first Curl. Curls are very people-oriented, faithful, affectionate soulmates, adjusting remarkably fast to other pets, children, and new situations.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Curl", "hypoallergenic": 0, "reference_image_id": "xnsqonbjW"}, {"weight": {"imperial": "8 - 15", "metric": "4 - 7"}, "id": "asho", "name": "American Shorthair", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanShorthair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-shorthair", "temperament": "Active, Curious, Easy Going, Playful, Calm", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The American Shorthair is known for its longevity, robust health, good looks, sweet personality, and amiability with children, dogs, and other pets.", "life_span": "15 - 17", "indoor": 0, "lap": 1, "alt_names": "Domestic Shorthair", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Shorthair", "hypoallergenic": 0, "reference_image_id": "JFPROfGtQ"}, {"weight": {"imperial": "8 - 15", "metric": "4 - 7"}, "id": "awir", "name": "American Wirehair", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanWirehair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-wirehair", "temperament": "Affectionate, Curious, Gentle, Intelligent, Interactive, Lively, Loyal, Playful, Sensible, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The American Wirehair tends to be a calm and tolerant cat who takes life as it comes. His favorite hobby is bird-watching from a sunny windowsill, and his hunting ability will stand you in good stead if insects enter the house.", "life_span": "14 - 18", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 3, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Wirehair", "hypoallergenic": 0, "reference_image_id": "8D--jCd21"}, {"weight": {"imperial": "8 - 16", "metric": "4 - 7"}, "id": "amau", "name": "Arabian Mau", "breed_group": null, "vcahospitals_url": "", "temperament": "Affectionate, Agile, Curious, Independent, Playful, Loyal", "origin": "United Arab Emirates", "country_codes": "AE", "country_code": "AE", "description": "Arabian Mau cats are social and energetic. Due to their energy levels, these cats do best in homes where their owners will be able to provide them with plenty of playtime, attention and interaction from their owners. These kitties are friendly, intelligent, and adaptable, and will even get along well with other pets and children.", "life_span": "12 - 14", "indoor": 0, "alt_names": "Alley cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 1, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Arabian_Mau", "hypoallergenic": 0, "reference_image_id": "k71ULYfRr"}, {"weight": {"imperial": "7 - 15", "metric": "3 - 7"}, "id": "amis", "name": "Australian Mist", "breed_group": null, "temperament": "Lively, Social, Fun-loving, Relaxed, Affectionate", "origin": "Australia", "country_codes": "AU", "country_code": "AU", "description": "The Australian Mist thrives on human companionship. Tolerant of even the youngest of children, these friendly felines enjoy playing games and being part of the hustle and bustle of a busy household. They make entertaining companions for people of all ages, and are happy to remain indoors between dusk and dawn or to be wholly indoor pets.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "Spotted Mist", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 4, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Mist", "hypoallergenic": 0, "reference_image_id": "_6x-3TiCA"}, {"weight": {"imperial": "4 - 10", "metric": "2 - 5"}, "id": "bali", "name": "Balinese", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Balinese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/balinese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/balinese", "temperament": "Affectionate, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Balinese are curious, outgoing, intelligent cats with excellent communication skills. They are known for their chatty personalities and are always eager to tell you their views on life, love, and what you\u2019ve served them for dinner. ", "life_span": "10 - 15", "indoor": 0, "alt_names": "Long-haired Siamese", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Balinese_(cat)", "hypoallergenic": 1, "reference_image_id": "13MkvUreZ"}, {"weight": {"imperial": "4 - 9", "metric": "2 - 4"}, "id": "bamb", "name": "Bambino", "breed_group": null, "temperament": "Affectionate, Lively, Friendly, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Bambino is a breed of cat that was created as a cross between the Sphynx and the Munchkin breeds. The Bambino cat has short legs, large upright ears, and is usually hairless. They love to be handled and cuddled up on the laps of their family members.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 1, "hairless": 1, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 1, "wikipedia_url": "https://en.wikipedia.org/wiki/Bambino_cat", "hypoallergenic": 0, "reference_image_id": "5AdhMjeEu"}, {"weight": {"imperial": "6 - 12", "metric": "3 - 7"}, "id": "beng", "name": "Bengal", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Bengal.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/bengal", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bengal", "temperament": "Alert, Agile, Energetic, Demanding, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Bengals are a lot of fun to live with, but they're definitely not the cat for everyone, or for first-time cat owners. Extremely intelligent, curious and active, they demand a lot of interaction and woe betide the owner who doesn't provide it.", "life_span": "12 - 15", "indoor": 0, "lap": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "bidability": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_(cat)", "hypoallergenic": 1, "reference_image_id": "O3btzLlsO"}, {"weight": {"imperial": "6 - 15", "metric": "3 - 7"}, "id": "birm", "name": "Birman", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Birman.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/birman", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/birman", "temperament": "Affectionate, Active, Gentle, Social", "origin": "France", "country_codes": "FR", "country_code": "FR", "description": "The Birman is a docile, quiet cat who loves people and will follow them from room to room. Expect the Birman to want to be involved in what you\u2019re doing. He communicates in a soft voice, mainly to remind you that perhaps it\u2019s time for dinner or maybe for a nice cuddle on the sofa. He enjoys being held and will relax in your arms like a furry baby.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Sacred Birman, Sacred Cat Of Burma", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Birman", "hypoallergenic": 0, "reference_image_id": "HOrX5gwLS"}, {"weight": {"imperial": "6 - 11", "metric": "3 - 5"}, "id": "bomb", "name": "Bombay", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Bombay.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/bombay", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bombay", "temperament": "Affectionate, Dependent, Gentle, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The the golden eyes and the shiny black coa of the Bopmbay is absolutely striking. Likely to bond most with one family member, the Bombay will follow you from room to room and will almost always have something to say about what you are doing, loving attention and to be carried around, often on his caregiver's shoulder.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "Small black Panther", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bombay_(cat)", "hypoallergenic": 0, "reference_image_id": "5iYq9NmT1"}, {"weight": {"imperial": "8 - 18", "metric": "4 - 8"}, "id": "bslo", "name": "British Longhair", "breed_group": null, "temperament": "Affectionate, Easy Going, Independent, Intelligent, Loyal, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The British Longhair is a very laid-back relaxed cat, often perceived to be very independent although they will enjoy the company of an equally relaxed and likeminded cat. They are an affectionate breed, but very much on their own terms and tend to prefer to choose to come and sit with their owners rather than being picked up.", "life_span": "12 - 14", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 5, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/British_Longhair", "hypoallergenic": 0, "reference_image_id": "7isAO4Cav"}, {"weight": {"imperial": "12 - 20", "metric": "5 - 9"}, "id": "bsho", "name": "British Shorthair", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/BritishShorthair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/british-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/british-shorthair", "temperament": "Affectionate, Easy Going, Gentle, Loyal, Patient, calm", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The British Shorthair is a very pleasant cat to have as a companion, ans is easy going and placid. The British is a fiercely loyal, loving cat and will attach herself to every one of her family members. While loving to play, she doesn't need hourly attention. If she is in the mood to play, she will find someone and bring a toy to that person. The British also plays well by herself, and thus is a good companion for single people.", "life_span": "12 - 17", "indoor": 0, "lap": 1, "alt_names": "Highlander, Highland Straight, Britannica", "adaptability": 5, "affection_level": 4, "child_friendly": 4, "dog_friendly": 5, "energy_level": 2, "grooming": 2, "health_issues": 2, "intelligence": 3, "shedding_level": 4, "social_needs": 3, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/British_Shorthair", "hypoallergenic": 0, "reference_image_id": "s4wQfYoEk"}, {"weight": {"imperial": "6 - 12", "metric": "3 - 5"}, "id": "bure", "name": "Burmese", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/burmese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/burmese", "temperament": "Curious, Intelligent, Gentle, Social, Interactive, Playful, Lively", "origin": "Burma", "country_codes": "MM", "country_code": "MM", "description": "Burmese love being with people, playing with them, and keeping them entertained. They crave close physical contact and abhor an empty lap. They will follow their humans from room to room, and sleep in bed with them, preferably under the covers, cuddled as close as possible. At play, they will turn around to see if their human is watching and being entertained by their crazy antics.", "life_span": "15 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Burmese_(cat)", "hypoallergenic": 1, "reference_image_id": "4lXnnfxac"}, {"weight": {"imperial": "6 - 13", "metric": "3 - 6"}, "id": "buri", "name": "Burmilla", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmilla.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/burmilla", "temperament": "Easy Going, Friendly, Intelligent, Lively, Playful, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Burmilla is a fairly placid cat. She tends to be an easy cat to get along with, requiring minimal care. The Burmilla is affectionate and sweet and makes a good companion, the Burmilla is an ideal companion to while away a lonely evening. Loyal, devoted, and affectionate, this cat will stay by its owner, always keeping them company.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Burmilla", "hypoallergenic": 0, "reference_image_id": "jvg3XfEdC"}, {"weight": {"imperial": "10 - 15", "metric": "5 - 7"}, "id": "cspa", "name": "California Spangled", "breed_group": null, "temperament": "Affectionate, Curious, Intelligent, Loyal, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Perhaps the only thing about the California spangled cat that isn\u2019t wild-like is its personality. Known to be affectionate, gentle and sociable, this breed enjoys spending a great deal of time with its owners. They are very playful, often choosing to perch in high locations and show off their acrobatic skills.", "life_span": "10 - 14", "indoor": 0, "alt_names": "Spangle", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/California_Spangled", "hypoallergenic": 0, "reference_image_id": "B1ERTmgph"}, {"weight": {"imperial": "7 - 12", "metric": "3 - 5"}, "id": "ctif", "name": "Chantilly-Tiffany", "breed_group": null, "temperament": "Affectionate, Demanding, Interactive, Loyal", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Chantilly is a devoted companion and prefers company to being left alone. While the Chantilly is not demanding, she will \"chirp\" and \"talk\" as if having a conversation. This breed is affectionate, with a sweet temperament. It can stay still for extended periods, happily lounging in the lap of its loved one. This quality makes the Tiffany an ideal traveling companion, and an ideal house companion for senior citizens and the physically handicapped.", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Chantilly, Foreign Longhair", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 5, "health_issues": 1, "intelligence": 5, "shedding_level": 5, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Chantilly-Tiffany", "hypoallergenic": 0, "reference_image_id": "TR-5nAd_S"}, {"weight": {"imperial": "6 - 15", "metric": "3 - 7"}, "id": "char", "name": "Chartreux", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/Chartreux.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/chartreux", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/chartreux", "temperament": "Affectionate, Loyal, Intelligent, Social, Lively, Playful", "origin": "France", "country_codes": "FR", "country_code": "FR", "description": "The Chartreux is generally silent but communicative. Short play sessions, mixed with naps and meals are their perfect day. Whilst appreciating any attention you give them, they are not demanding, content instead to follow you around devotedly, sleep on your bed and snuggle with you if you\u2019re not feeling well.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 2, "grooming": 1, "health_issues": 2, "intelligence": 4, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Chartreux", "hypoallergenic": 1, "reference_image_id": "j6oFGLpRG"}, {"weight": {"imperial": "7 - 15", "metric": "3 - 7"}, "id": "chau", "name": "Chausie", "breed_group": null, "temperament": "Affectionate, Intelligent, Playful, Social", "origin": "Egypt", "country_codes": "EG", "country_code": "EG", "description": "For those owners who desire a feline capable of evoking the great outdoors, the strikingly beautiful Chausie retains a bit of the wild in its appearance but has the house manners of our friendly, familiar moggies. Very playful, this cat needs a large amount of space to be able to fully embrace its hunting instincts.", "life_span": "12 - 14", "indoor": 0, "alt_names": "Nile Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 1, "experimental": 1, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Chausie", "hypoallergenic": 0, "reference_image_id": "vJ3lEYgXr"}, {"weight": {"imperial": "8 - 15", "metric": "4 - 7"}, "id": "chee", "name": "Cheetoh", "breed_group": null, "temperament": "Affectionate, Gentle, Intelligent, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Cheetoh has a super affectionate nature and real love for their human companions; they are intelligent with the ability to learn quickly. You can expect that a Cheetoh will be a fun-loving kitty who enjoys playing, running, and jumping through every room in your house.", "life_span": "12 - 14", "indoor": 0, "alt_names": "\u00a0", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_cat#Cheetoh", "hypoallergenic": 0, "reference_image_id": "IFXsxmXLm"}, {"weight": {"imperial": "4 - 10", "metric": "2 - 5"}, "id": "csho", "name": "Colorpoint Shorthair", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/ColorpointShorthair.aspx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/colorpoint-shorthair", "temperament": "Affectionate, Intelligent, Playful, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Colorpoint Shorthairs are an affectionate breed, devoted and loyal to their people. Sensitive to their owner\u2019s moods, Colorpoints are more than happy to sit at your side or on your lap and purr words of encouragement on a bad day. They will constantly seek out your lap whenever it is open and in the moments when your lap is preoccupied they will stretch out in sunny spots on the ground.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 3, "affection_level": 4, "child_friendly": 4, "cat_friendly": 3, "dog_friendly": 4, "energy_level": 4, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 5, "bidability": 4, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Colorpoint_Shorthair", "hypoallergenic": 0, "reference_image_id": "oSpqGyUDS"}, {"weight": {"imperial": "5 - 9", "metric": "2 - 4"}, "id": "crex", "name": "Cornish Rex", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/CornishRex.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/cornish-rex", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/cornish-rex", "temperament": "Affectionate, Intelligent, Active, Curious, Playful", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "This is a confident cat who loves people and will follow them around, waiting for any opportunity to sit in a lap or give a kiss. He enjoys being handled, making it easy to take him to the veterinarian or train him for therapy work. The Cornish Rex stay in kitten mode most of their lives and well into their senior years. ", "life_span": "11 - 14", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 2, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cornish_Rex", "hypoallergenic": 1, "reference_image_id": "unX21IBVB"}, {"weight": {"imperial": "8 - 13", "metric": "4 - 6"}, "id": "cymr", "name": "Cymric", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/cymric", "temperament": "Gentle, Loyal, Intelligent, Playful", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "The Cymric is a placid, sweet cat. They do not get too upset about anything that happens in their world. They are loving companions and adore people. They are smart and dexterous, capable of using his paws to get into cabinets or to open doors.", "life_span": "8 - 14", "indoor": 0, "lap": 1, "alt_names": "Spangle", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 5, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cymric_(cat)", "hypoallergenic": 0, "reference_image_id": "3dbtapCWM"}, {"weight": {"imperial": "8 - 16", "metric": "4 - 7"}, "id": "cypr", "name": "Cyprus", "breed_group": null, "temperament": "Affectionate, Social", "origin": "Cyprus", "country_codes": "CY", "country_code": "CY", "description": "Loving, loyal, social and inquisitive, the Cyprus cat forms strong ties with their families and love nothing more than to be involved in everything that goes on in their surroundings. They are not overly active by nature which makes them the perfect companion for people who would like to share their homes with a laid-back relaxed feline companion. ", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Cypriot cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cyprus_cat", "hypoallergenic": 0, "reference_image_id": "tJbzb7FKo"}, {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "drex", "name": "Devon Rex", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/DevonRex.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/devon-rex", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/devon-rex", "temperament": "Highly interactive, Mischievous, Loyal, Social, Playful", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The favourite perch of the Devon Rex is right at head level, on the shoulder of her favorite person. She takes a lively interest in everything that is going on and refuses to be left out of any activity. Count on her to stay as close to you as possible, occasionally communicating his opinions in a quiet voice. She loves people and welcomes the attentions of friends and family alike.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "Pixie cat, Alien cat, Poodle cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Devon_Rex", "hypoallergenic": 1, "reference_image_id": "4RzEwvyzz"}, {"weight": {"imperial": "10 - 12", "metric": "5 - 6"}, "id": "dons", "name": "Donskoy", "breed_group": null, "temperament": "Playful, affectionate, loyal, social", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "Donskoy are affectionate, intelligent, and easy-going. They demand lots of attention and interaction. The Donskoy also gets along well with other pets. It is now thought the same gene that causes degrees of hairlessness in the Donskoy also causes alterations in cat personality, making them calmer the less hair they have.", "life_span": "12 - 15", "indoor": 0, "adaptability": 4, "affection_level": 4, "child_friendly": 3, "cat_friendly": 3, "dog_friendly": 3, "energy_level": 4, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 2, "experimental": 0, "hairless": 1, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Donskoy_(cat)", "hypoallergenic": 0, "reference_image_id": "3KG57GfMW"}, {"weight": {"imperial": "9 - 12", "metric": "4 - 6"}, "id": "lihu", "name": "Dragon Li", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/li-hua", "temperament": "Intelligent, Friendly, Gentle, Loving, Loyal", "origin": "China", "country_codes": "CN", "country_code": "CN", "description": "The Dragon Li is loyal, but not particularly affectionate. They are known to be very intelligent, and their natural breed status means that they're very active. She is is gentle with people, and has a reputation as a talented hunter of rats and other vermin.", "life_span": "12 - 15", "indoor": 1, "alt_names": "Chinese Lia Hua, L\u00ed hua m\u0101o (\u8c8d\u82b1\u8c93), Li Hua", "adaptability": 3, "affection_level": 3, "child_friendly": 3, "cat_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Dragon_Li", "hypoallergenic": 0, "reference_image_id": "BQMSld0A0"}, {"weight": {"imperial": "6 - 14", "metric": "3 - 6"}, "id": "emau", "name": "Egyptian Mau", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/EgyptianMau.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/egyptian-mau", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/egyptian-mau", "temperament": "Agile, Dependent, Gentle, Intelligent, Lively, Loyal, Playful", "origin": "Egypt", "country_codes": "EG", "country_code": "EG", "description": "The Egyptian Mau is gentle and reserved. She loves her people and desires attention and affection from them but is wary of others. Early, continuing socialization is essential with this sensitive and sometimes shy cat, especially if you plan to show or travel with her. Otherwise, she can be easily startled by unexpected noises or events.", "life_span": "18 - 20", "indoor": 0, "lap": 1, "alt_names": "Pharaoh Cat", "adaptability": 2, "affection_level": 5, "child_friendly": 3, "dog_friendly": 3, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 4, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Egyptian_Mau", "hypoallergenic": 0, "reference_image_id": "TuSyTkt2n"}, {"weight": {"imperial": "7 - 14", "metric": "3 - 6"}, "id": "ebur", "name": "European Burmese", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/EuropeanBurmese.aspx", "temperament": "Sweet, Affectionate, Loyal", "origin": "Burma", "country_codes": "MM", "country_code": "MM", "description": "The European Burmese is a very affectionate, intelligent, and loyal cat. They thrive on companionship and will want to be with you, participating in everything you do. While they might pick a favorite family member, chances are that they will interact with everyone in the home, as well as any visitors that come to call. They are inquisitive and playful, even as adults. ", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 4, "dog_friendly": 4, "energy_level": 4, "grooming": 1, "health_issues": 4, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 4, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "hypoallergenic": 0}, {"weight": {"imperial": "7 - 14", "metric": "3 - 6"}, "id": "esho", "name": "Exotic Shorthair", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/Exotic.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/exotic-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/exotic-shorthair", "temperament": "Affectionate, Sweet, Loyal, Quiet, Peaceful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Exotic Shorthair is a gentle friendly cat that has the same personality as the Persian. They love having fun, don\u2019t mind the company of other cats and dogs, also love to curl up for a sleep in a safe place. Exotics love their own people, but around strangers they are cautious at first. Given time, they usually warm up to visitors.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Exotic", "adaptability": 5, "affection_level": 5, "child_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 2, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Exotic_Shorthair", "hypoallergenic": 0, "reference_image_id": "YnPrYEmfe"}, {"weight": {"imperial": "6 - 10", "metric": "3 - 5"}, "id": "hbro", "name": "Havana Brown", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/HavanaBrown.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/havana-brown", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/havana-brown", "temperament": "Affectionate, Curious, Demanding, Friendly, Intelligent, Playful", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Havana Brown is human oriented, playful, and curious. She has a strong desire to spend time with her people and involve herself in everything they do. Being naturally inquisitive, the Havana Brown reaches out with a paw to touch and feel when investigating curiosities in its environment. They are truly sensitive by nature and frequently gently touch their human companions as if they are extending a paw of friendship.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "Havana, HB", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Havana_Brown", "hypoallergenic": 0, "reference_image_id": "njK25knLH"}, {"weight": {"imperial": "7 - 14", "metric": "3 - 6"}, "id": "hima", "name": "Himalayan", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/himalayan", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/himalayan", "temperament": "Dependent, Gentle, Intelligent, Quiet, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Calm and devoted, Himalayans make excellent companions, though they prefer a quieter home. They are playful in a sedate kind of way and enjoy having an assortment of toys. The Himalayan will stretch out next to you, sleep in your bed and even sit on your lap when she is in the mood.", "life_span": "9 - 15", "indoor": 0, "lap": 1, "alt_names": "Himalayan Persian, Colourpoint Persian, Longhaired Colourpoint, Himmy", "adaptability": 5, "affection_level": 5, "child_friendly": 2, "dog_friendly": 2, "energy_level": 1, "grooming": 5, "health_issues": 3, "intelligence": 3, "shedding_level": 4, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Himalayan_(cat)", "hypoallergenic": 0, "reference_image_id": "CDhOtM-Ig"}, {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "jbob", "name": "Japanese Bobtail", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsCJ/JapaneseBobtail.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/japanese-bobtail", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/japanese-bobtail", "temperament": "Active, Agile, Clever, Easy Going, Intelligent, Lively, Loyal, Playful, Social", "origin": "Japan", "country_codes": "JP", "country_code": "JP", "description": "The Japanese Bobtail is an active, sweet, loving and highly intelligent breed. They love to be with people and play seemingly endlessly. They learn their name and respond to it. They bring toys to people and play fetch with a favorite toy for hours. Bobtails are social and are at their best when in the company of people. They take over the house and are not intimidated. If a dog is in the house, Bobtails assume Bobtails are in charge.", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Japanese Truncated Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Japanese_Bobtail", "hypoallergenic": 0, "reference_image_id": "-tm9-znzl"}, {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "java", "name": "Javanese", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/javanese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/javanese", "temperament": "Active, Devoted, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Javanese are endlessly interested, intelligent and active. They tend to enjoy jumping to great heights, playing with fishing pole-type or other interactive toys and just generally investigating their surroundings. He will attempt to copy things you do, such as opening doors or drawers.", "life_span": "10 - 12", "indoor": 0, "alt_names": "\u00a0", "adaptability": 4, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Javanese_cat", "hypoallergenic": 1, "reference_image_id": "xoI_EpOKe"}, {"weight": {"imperial": "8 - 12", "metric": "4 - 6"}, "id": "khao", "name": "Khao Manee", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/KhaoManee.aspx", "temperament": "Calm, Relaxed, Talkative, Playful, Warm", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "The Khao Manee is highly intelligent, with an extrovert and inquisitive nature, however they are also very calm and relaxed, making them an idea lap cat.", "life_span": "10 - 12", "indoor": 0, "lap": 1, "alt_names": "Diamond Eye cat", "adaptability": 4, "affection_level": 4, "child_friendly": 3, "cat_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 4, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Khao_Manee", "hypoallergenic": 0, "reference_image_id": "165ok6ESN"}, {"weight": {"imperial": "7 - 11", "metric": "3 - 5"}, "id": "kora", "name": "Korat", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Korat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/korat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/korat", "temperament": "Active, Loyal, highly intelligent, Expressive, Trainable", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "The Korat is a natural breed, and one of the oldest stable cat breeds. They are highly intelligent and confident cats that can be fearless, although they are startled by loud sounds and sudden movements. Korats form strong bonds with their people and like to cuddle and stay nearby.", "life_span": "10 - 15", "indoor": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 2, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Korat", "hypoallergenic": 0, "reference_image_id": "DbwiefiaY"}, {"weight": {"imperial": "8 - 15", "metric": "4 - 7"}, "id": "kuri", "name": "Kurilian", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/kurilian-bobtail", "temperament": "Independent, highly intelligent, clever, inquisitive, sociable, playful, trainable", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "The character of the Kurilian Bobtail is independent, highly intelligent, clever, inquisitive, sociable, playful, trainable, absent of aggression and very gentle. They are devoted to their humans and when allowed are either on the lap of or sleeping in bed with their owners.", "life_span": "15 - 20", "indoor": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 5, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Kurilian_Bobtail", "hypoallergenic": 0, "reference_image_id": "NZpO4pU56M"}, {"weight": {"imperial": "6 - 10", "metric": "3 - 5"}, "id": "lape", "name": "LaPerm", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/LaPerm.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/laperm", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/laperm", "temperament": "Affectionate, Friendly, Gentle, Intelligent, Playful, Quiet", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "LaPerms are gentle and affectionate but also very active. Unlike many active breeds, the LaPerm is also quite content to be a lap cat. The LaPerm will often follow your lead; that is, if they are busy playing and you decide to sit and relax, simply pick up your LaPerm and sit down with it, and it will stay in your lap, devouring the attention you give it.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "Si-Sawat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/LaPerm", "hypoallergenic": 1, "reference_image_id": "aKbsEYjSl"}, {"weight": {"imperial": "12 - 18", "metric": "5 - 8"}, "id": "mcoo", "name": "Maine Coon", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/MaineCoon.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/maine-coon", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/maine-coon", "temperament": "Adaptable, Intelligent, Loving, Gentle, Independent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "They are known for their size and luxurious long coat Maine Coons are considered a gentle giant. The good-natured and affable Maine Coon adapts well to many lifestyles and personalities. She likes being with people and has the habit of following them around, but isn\u2019t needy. Most Maine Coons love water and they can be quite good swimmers.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Coon Cat, Maine Cat, Maine Shag, Snowshoe Cat, American Longhair, The Gentle Giants", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Maine_Coon", "hypoallergenic": 0, "reference_image_id": "OOD3VXAQn"}, {"weight": {"imperial": "6 - 13", "metric": "3 - 6"}, "id": "mala", "name": "Malayan", "breed_group": null, "temperament": "Affectionate, Interactive, Playful, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "Malayans love to explore and even enjoy traveling by way of a cat carrier. They are quite a talkative and rather loud cat with an apparent strong will. These cats will make sure that you give it the attention it seeks and always seem to want to be held and hugged. They will constantly interact with people, even strangers. They love to play and cuddle.", "life_span": "12 - 18", "indoor": 0, "alt_names": "Asian", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Asian_cat", "hypoallergenic": 0}, {"weight": {"imperial": "7 - 13", "metric": "3 - 6"}, "id": "manx", "name": "Manx", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Manx.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/manx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/manx", "temperament": "Easy Going, Intelligent, Loyal, Playful, Social", "origin": "Isle of Man", "country_codes": "IM", "country_code": "IM", "description": "The Manx is a placid, sweet cat that is gentle and playful. She never seems to get too upset about anything. She is a loving companion and adores being with people.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Manks, Stubbin, Rumpy", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 5, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Manx_(cat)", "hypoallergenic": 0, "reference_image_id": "fhYh2PDcC"}, {"weight": {"imperial": "5 - 9", "metric": "2 - 4"}, "id": "munc", "name": "Munchkin", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/munchkin", "temperament": "Agile, Easy Going, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Munchkin is an outgoing cat who enjoys being handled. She has lots of energy and is faster and more agile than she looks. The shortness of their legs does not seem to interfere with their running and leaping abilities.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 2, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 1, "wikipedia_url": "https://en.wikipedia.org/wiki/Munchkin_(cat)", "hypoallergenic": 0, "reference_image_id": "j5cVSqLer"}, {"weight": {"imperial": "7 - 11", "metric": "3 - 5"}, "id": "nebe", "name": "Nebelung", "breed_group": null, "temperament": "Gentle, Quiet, Shy, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Nebelung may have a reserved nature, but she loves to play (being especially fond of retrieving) and enjoys jumping or climbing to high places where she can study people and situations at her leisure before making up her mind about whether she wants to get involved.", "life_span": "11 - 16", "indoor": 0, "lap": 1, "alt_names": "Longhaired Russian Blue", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Nebelung", "hypoallergenic": 0, "reference_image_id": "OGTWqNNOt"}, {"weight": {"imperial": "8 - 16", "metric": "4 - 7"}, "id": "norw", "name": "Norwegian Forest Cat", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/NorwegianForestCat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/norwegian-forest-cat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/norwegian-forest-cat", "temperament": "Sweet, Active, Intelligent, Social, Playful, Lively, Curious", "origin": "Norway", "country_codes": "NO", "country_code": "NO", "description": "The Norwegian Forest Cat is a sweet, loving cat. She appreciates praise and loves to interact with her parent. She makes a loving companion and bonds with her parents once she accepts them for her own. She is still a hunter at heart. She loves to chase toys as if they are real. She is territorial and patrols several times each day to make certain that all is fine.", "life_span": "12 - 16", "indoor": 0, "alt_names": "Skogkatt / Skaukatt, Norsk Skogkatt / Norsk Skaukatt, Weegie", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 4, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Norwegian_Forest_Cat", "hypoallergenic": 0, "reference_image_id": "06dgGmEOV"}, {"weight": {"imperial": "7 - 15", "metric": "3 - 7"}, "id": "ocic", "name": "Ocicat", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ocicat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ocicat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ocicat", "temperament": "Active, Agile, Curious, Demanding, Friendly, Gentle, Lively, Playful, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Loyal and devoted to their owners, the Ocicat is intelligent, confident, outgoing, and seems to have many dog traits. They can be trained to fetch toys, walk on a lead, taught to 'speak', come when called, and follow other commands. ", "life_span": "12 - 14", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ocicat", "hypoallergenic": 1, "reference_image_id": "JAx-08Y0n"}, {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "orie", "name": "Oriental", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Oriental.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/oriental", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/oriental", "temperament": "Energetic, Affectionate, Intelligent, Social, Playful, Curious", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Orientals are passionate about the people in their lives. They become extremely attached to their humans, so be prepared for a lifetime commitment. When you are not available to entertain her, an Oriental will divert herself by jumping on top of the refrigerator, opening drawers, seeking out new hideaways.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Foreign Type", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Oriental_Shorthair", "hypoallergenic": 1, "reference_image_id": "LutjkZJpH"}, {"weight": {"imperial": "9 - 14", "metric": "4 - 6"}, "id": "pers", "name": "Persian", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Persian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/persian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/persian", "temperament": "Affectionate, loyal, Sedate, Quiet", "origin": "Iran (Persia)", "country_codes": "IR", "country_code": "IR", "description": "Persians are sweet, gentle cats that can be playful or quiet and laid-back. Great with families and children, they absolutely love to lounge around the house. While they don\u2019t mind a full house or active kids, they\u2019ll usually hide when they need some alone time.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Longhair, Persian Longhair, Shiraz, Shirazi", "adaptability": 5, "affection_level": 5, "child_friendly": 2, "dog_friendly": 2, "energy_level": 1, "grooming": 5, "health_issues": 3, "intelligence": 3, "shedding_level": 4, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Persian_(cat)", "hypoallergenic": 0, "reference_image_id": "-Zfz5z2jK"}, {"weight": {"imperial": "8 - 17", "metric": "4 - 8"}, "id": "pixi", "name": "Pixie-bob", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/pixiebob", "temperament": "Affectionate, Social, Intelligent, Loyal", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Companionable and affectionate, the Pixie-bob wants to be an integral part of the family. The Pixie-Bob\u2019s ability to bond with their humans along with their patient personas make them excellent companions for children.", "life_span": "13 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Pixiebob", "hypoallergenic": 0, "reference_image_id": "z7fJRNeN6"}, {"weight": {"imperial": "8 - 20", "metric": "4 - 9"}, "id": "raga", "name": "Ragamuffin", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ragamuffin.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ragamuffin", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ragamuffin", "temperament": "Affectionate, Friendly, Gentle, Calm", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Ragamuffin is calm, even tempered and gets along well with all family members. Changes in routine generally do not upset her. She is an ideal companion for those in apartments, and with children due to her patient nature.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ragamuffin_cat", "hypoallergenic": 0, "reference_image_id": "SMuZx-bFM"}, {"weight": {"imperial": "12 - 20", "metric": "5 - 9"}, "id": "ragd", "name": "Ragdoll", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ragdoll.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ragdoll", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ragdoll", "temperament": "Affectionate, Friendly, Gentle, Quiet, Easygoing", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Ragdolls love their people, greeting them at the door, following them around the house, and leaping into a lap or snuggling in bed whenever given the chance. They are the epitome of a lap cat, enjoy being carried and collapsing into the arms of anyone who holds them.", "life_span": "12 - 17", "indoor": 0, "lap": 1, "alt_names": "Rag doll", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ragdoll", "hypoallergenic": 0, "reference_image_id": "oGefY4YoG"}, {"weight": {"imperial": "5 - 11", "metric": "2 - 5"}, "id": "rblu", "name": "Russian Blue", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/RussianBlue.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/russian-blue-nebelung", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/russian-blue", "temperament": "Active, Dependent, Easy Going, Gentle, Intelligent, Loyal, Playful, Quiet", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "Russian Blues are very loving and reserved. They do not like noisy households but they do like to play and can be quite active when outdoors. They bond very closely with their owner and are known to be compatible with other pets.", "life_span": "10 - 16", "indoor": 0, "lap": 1, "alt_names": "Archangel Blue, Archangel Cat", "adaptability": 3, "affection_level": 3, "child_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 1, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Russian_Blue", "hypoallergenic": 1, "reference_image_id": "Rhj-JsTLP"}, {"weight": {"imperial": "8 - 25", "metric": "4 - 11"}, "id": "sava", "name": "Savannah", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/savannah", "temperament": "Curious, Social, Intelligent, Loyal, Outgoing, Adventurous, Affectionate", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Savannah is the feline version of a dog. Actively seeking social interaction, they are given to pouting if left out. Remaining kitten-like through life. Profoundly loyal to immediate family members whilst questioning the presence of strangers. Making excellent companions that are loyal, intelligent and eager to be involved.", "life_span": "17 - 20", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 1, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Savannah_cat", "hypoallergenic": 0, "reference_image_id": "a8nIYvs6S"}, {"weight": {"imperial": "5 - 11", "metric": "2 - 5"}, "id": "sfol", "name": "Scottish Fold", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/ScottishFold.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/scottish-fold-highland-fold", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/scottish-fold", "temperament": "Affectionate, Intelligent, Loyal, Playful, Social, Sweet, Loving", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Scottish Fold is a sweet, charming breed. She is an easy cat to live with and to care for. She is affectionate and is comfortable with all members of her family. Her tail should be handled gently. Folds are known for sleeping on their backs, and for sitting with their legs stretched out and their paws on their belly. This is called the \"Buddha Position\".", "life_span": "11 - 14", "indoor": 0, "alt_names": "Scot Fold", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 4, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Scottish_Fold", "hypoallergenic": 0, "reference_image_id": "o9t0LDcsa"}, {"weight": {"imperial": "6 - 16", "metric": "3 - 7"}, "id": "srex", "name": "Selkirk Rex", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/SelkirkRex.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/selkirk-rex", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/selkirk-rex", "temperament": "Active, Affectionate, Dependent, Gentle, Patient, Playful, Quiet, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Selkirk Rex is an incredibly patient, loving, and tolerant breed. The Selkirk also has a silly side and is sometimes described as clownish. She loves being a lap cat and will be happy to chat with you in a quiet voice if you talk to her. ", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Shepherd Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 4, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Selkirk_Rex", "hypoallergenic": 1, "reference_image_id": "II9dOZmrw"}, {"weight": {"imperial": "8 - 15", "metric": "4 - 7"}, "id": "siam", "name": "Siamese", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Siamese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/siamese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/siamese", "temperament": "Active, Agile, Clever, Sociable, Loving, Energetic", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "While Siamese cats are extremely fond of their people, they will follow you around and supervise your every move, being talkative and opinionated. They are a demanding and social cat, that do not like being left alone for long periods.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Siam, Thai Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Siamese_(cat)", "hypoallergenic": 1, "reference_image_id": "ai6Jps4sx"}, {"weight": {"imperial": "8 - 16", "metric": "4 - 7"}, "id": "sibe", "name": "Siberian", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Siberian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/siberian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/siberian", "temperament": "Curious, Intelligent, Loyal, Sweet, Agile, Playful, Affectionate", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "The Siberians dog like temperament and affection makes the ideal lap cat and will live quite happily indoors. Very agile and powerful, the Siberian cat can easily leap and reach high places, including the tops of refrigerators and even doors. ", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Moscow Semi-longhair, HairSiberian Forest Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Siberian_(cat)", "hypoallergenic": 1, "reference_image_id": "3bkZAjRh1"}, {"weight": {"imperial": "5 - 8", "metric": "2 - 4"}, "id": "sing", "name": "Singapura", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Singapura.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/singapura", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/singapura", "temperament": "Affectionate, Curious, Easy Going, Intelligent, Interactive, Lively, Loyal", "origin": "Singapore", "country_codes": "SP", "country_code": "SP", "description": "The Singapura is usually cautious when it comes to meeting new people, but loves attention from his family so much that she sometimes has the reputation of being a pest. This is a highly active, curious and affectionate cat. She may be small, but she knows she\u2019s in charge", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Drain Cat, Kucinta, Pura", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Singapura_(cat)", "hypoallergenic": 0, "reference_image_id": "Qtncp2nRe"}, {"weight": {"imperial": "7 - 12", "metric": "3 - 5"}, "id": "snow", "name": "Snowshoe", "breed_group": null, "temperament": "Affectionate, Social, Intelligent, Sweet-tempered", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Snowshoe is a vibrant, energetic, affectionate and intelligent cat. They love being around people which makes them ideal for families, and becomes unhappy when left alone for long periods of time. Usually attaching themselves to one person, they do whatever they can to get your attention.", "life_span": "14 - 19", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Snowshoe_(cat)", "hypoallergenic": 0, "reference_image_id": "MK-sYESvO"}, {"weight": {"imperial": "6 - 12", "metric": "3 - 5"}, "id": "soma", "name": "Somali", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Somali.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/somali", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/somali", "temperament": "Mischievous, Tenacious, Intelligent, Affectionate, Gentle, Interactive, Loyal", "origin": "Somalia", "country_codes": "SO", "country_code": "SO", "description": "The Somali lives life to the fullest. He climbs higher, jumps farther, plays harder. Nothing escapes the notice of this highly intelligent and inquisitive cat. Somalis love the company of humans and other animals.", "life_span": "12 - 16", "indoor": 0, "alt_names": "Fox Cat, Long-Haired Abyssinian", "adaptability": 5, "affection_level": 5, "child_friendly": 3, "dog_friendly": 4, "energy_level": 5, "grooming": 3, "health_issues": 2, "intelligence": 5, "shedding_level": 4, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Somali_(cat)", "hypoallergenic": 0, "reference_image_id": "EPF2ejNS0"}, {"weight": {"imperial": "6 - 12", "metric": "3 - 5"}, "id": "sphy", "name": "Sphynx", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Sphynx.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/sphynx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/sphynx", "temperament": "Loyal, Inquisitive, Friendly, Quiet, Gentle", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "The Sphynx is an intelligent, inquisitive, extremely friendly people-oriented breed. Sphynx commonly greet their owners at the front door, with obvious excitement and happiness. She has an unexpected sense of humor that is often at odds with her dour expression.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Canadian Hairless, Canadian Sphynx", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 4, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 1, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Sphynx_(cat)", "hypoallergenic": 1, "reference_image_id": "BDb8ZXb1v"}, {"weight": {"imperial": "6 - 12", "metric": "3 - 5"}, "id": "tonk", "name": "Tonkinese", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Tonkinese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/tonkinese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/tonkinese", "temperament": "Curious, Intelligent, Social, Lively, Outgoing, Playful, Affectionate", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "Intelligent and generous with their affection, a Tonkinese will supervise all activities with curiosity. Loving, social, active, playful, yet content to be a lap cat", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Tonk", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Tonkinese_(cat)", "hypoallergenic": 0, "reference_image_id": "KBroiVNCM"}, {"weight": {"imperial": "7 - 15", "metric": "3 - 7"}, "id": "toyg", "name": "Toyger", "breed_group": null, "vetstreet_url": "http://www.vetstreet.com/cats/toyger", "temperament": "Playful, Social, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Toyger has a sweet, calm personality and is generally friendly. He's outgoing enough to walk on a leash, energetic enough to play fetch and other interactive games, and confident enough to get along with other cats and friendly dogs.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Toyger", "hypoallergenic": 0, "reference_image_id": "O3F3_S1XN"}, {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "tang", "name": "Turkish Angora", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/TurkishAngora.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/turkish-angora", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/turkish-angora", "temperament": "Affectionate, Agile, Clever, Gentle, Intelligent, Playful, Social", "origin": "Turkey", "country_codes": "TR", "country_code": "TR", "description": "This is a smart and intelligent cat which bonds well with humans. With its affectionate and playful personality the Angora is a top choice for families. The Angora gets along great with other pets in the home, but it will make clear who is in charge, and who the house belongs to", "life_span": "15 - 18", "indoor": 0, "alt_names": "Ankara", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Turkish_Angora", "hypoallergenic": 0, "reference_image_id": "7CGV6WVXq"}, {"weight": {"imperial": "7 - 20", "metric": "3 - 9"}, "id": "tvan", "name": "Turkish Van", "breed_group": null, "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/TurkishVan.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/turkish-van", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/turkish-van", "temperament": "Agile, Intelligent, Loyal, Playful, Energetic", "origin": "Turkey", "country_codes": "TR", "country_code": "TR", "description": "While the Turkish Van loves to jump and climb, play with toys, retrieve and play chase, she is is big and ungainly; this is one cat who doesn\u2019t always land on his feet. While not much of a lap cat, the Van will be happy to cuddle next to you and sleep in your bed. ", "life_span": "12 - 17", "indoor": 0, "alt_names": "Turkish Cat, Swimming cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Turkish_Van", "hypoallergenic": 0, "reference_image_id": "sxIXJax6h"}, {"weight": {"imperial": "12 - 18", "metric": "5 - 8"}, "id": "ycho", "name": "York Chocolate", "breed_group": null, "temperament": "Playful, Social, Intelligent, Curious, Friendly", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "York Chocolate cats are known to be true lap cats with a sweet temperament. They love to be cuddled and petted. Their curious nature makes them follow you all the time and participate in almost everything you do, even if it's related to water: unlike many other cats, York Chocolates love it.", "life_span": "13 - 15", "indoor": 0, "lap": 1, "alt_names": "York", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/York_Chocolate", "hypoallergenic": 0, "reference_image_id": "0SxW2SQ_S"}]
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "8 - 16", "metric": "4 - 7"}, "id": "norw", "name": "Norwegian Forest Cat", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/NorwegianForestCat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/norwegian-forest-cat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/norwegian-forest-cat", "temperament": "Sweet, Active, Intelligent, Social, Playful, Lively, Curious", "origin": "Norway", "country_codes": "NO", "country_code": "NO", "description": "The Norwegian Forest Cat is a sweet, loving cat. She appreciates praise and loves to interact with her parent. She makes a loving companion and bonds with her parents once she accepts them for her own. She is still a hunter at heart. She loves to chase toys as if they are real. She is territorial and patrols several times each day to make certain that all is fine.", "life_span": "12 - 16", "indoor": 0, "alt_names": "Skogkatt / Skaukatt, Norsk Skogkatt / Norsk Skaukatt, Weegie", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 4, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Norwegian_Forest_Cat", "hypoallergenic": 0, "reference_image_id": "06dgGmEOV"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "12 - 18", "metric": "5 - 8"}, "id": "ycho", "name": "York Chocolate", "temperament": "Playful, Social, Intelligent, Curious, Friendly", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "York Chocolate cats are known to be true lap cats with a sweet temperament. They love to be cuddled and petted. Their curious nature makes them follow you all the time and participate in almost everything you do, even if it's related to water: unlike many other cats, York Chocolates love it.", "life_span": "13 - 15", "indoor": 0, "lap": 1, "alt_names": "York", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/York_Chocolate", "hypoallergenic": 0, "reference_image_id": "0SxW2SQ_S"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "5 - 11", "metric": "2 - 5"}, "id": "sfol", "name": "Scottish Fold", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/ScottishFold.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/scottish-fold-highland-fold", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/scottish-fold", "temperament": "Affectionate, Intelligent, Loyal, Playful, Social, Sweet, Loving", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Scottish Fold is a sweet, charming breed. She is an easy cat to live with and to care for. She is affectionate and is comfortable with all members of her family. Her tail should be handled gently. Folds are known for sleeping on their backs, and for sitting with their legs stretched out and their paws on their belly. This is called the \"Buddha Position\".", "life_span": "11 - 14", "indoor": 0, "alt_names": "Scot Fold", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 4, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Scottish_Fold", "hypoallergenic": 0, "reference_image_id": "o9t0LDcsa"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "6 - 12", "metric": "3 - 5"}, "id": "sphy", "name": "Sphynx", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Sphynx.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/sphynx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/sphynx", "temperament": "Loyal, Inquisitive, Friendly, Quiet, Gentle", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "The Sphynx is an intelligent, inquisitive, extremely friendly people-oriented breed. Sphynx commonly greet their owners at the front door, with obvious excitement and happiness. She has an unexpected sense of humor that is often at odds with her dour expression.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Canadian Hairless, Canadian Sphynx", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 4, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 1, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Sphynx_(cat)", "hypoallergenic": 1, "reference_image_id": "BDb8ZXb1v"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "5 - 10", "metric": "2 - 5"}, "id": "java", "name": "Javanese", "vetstreet_url": "http://www.vetstreet.com/cats/javanese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/javanese", "temperament": "Active, Devoted, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Javanese are endlessly interested, intelligent and active. They tend to enjoy jumping to great heights, playing with fishing pole-type or other interactive toys and just generally investigating their surroundings. He will attempt to copy things you do, such as opening doors or drawers.", "life_span": "10 - 12", "indoor": 0, "alt_names": "\u00a0", "adaptability": 4, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Javanese_cat", "hypoallergenic": 1, "reference_image_id": "xoI_EpOKe"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "9 - 14", "metric": "4 - 6"}, "id": "pers", "name": "Persian", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Persian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/persian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/persian", "temperament": "Affectionate, loyal, Sedate, Quiet", "origin": "Iran (Persia)", "country_codes": "IR", "country_code": "IR", "description": "Persians are sweet, gentle cats that can be playful or quiet and laid-back. Great with families and children, they absolutely love to lounge around the house. While they don\u2019t mind a full house or active kids, they\u2019ll usually hide when they need some alone time.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Longhair, Persian Longhair, Shiraz, Shirazi", "adaptability": 5, "affection_level": 5, "child_friendly": 2, "dog_friendly": 2, "energy_level": 1, "grooming": 5, "health_issues": 3, "intelligence": 3, "shedding_level": 4, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Persian_(cat)", "hypoallergenic": 0, "reference_image_id": "-Zfz5z2jK"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "6 - 12", "metric": "3 - 7"}, "id": "beng", "name": "Bengal", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Bengal.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/bengal", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bengal", "temperament": "Alert, Agile, Energetic, Demanding, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Bengals are a lot of fun to live with, but they're definitely not the cat for everyone, or for first-time cat owners. Extremely intelligent, curious and active, they demand a lot of interaction and woe betide the owner who doesn't provide it.", "life_span": "12 - 15", "indoor": 0, "lap": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "bidability": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_(cat)", "hypoallergenic": 1, "reference_image_id": "O3btzLlsO"}
@@ -0,0 +1 @@
1
+ {"weight": {"imperial": "12 - 20", "metric": "5 - 9"}, "id": "bsho", "name": "British Shorthair", "cfa_url": "http://cfa.org/Breeds/BreedsAB/BritishShorthair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/british-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/british-shorthair", "temperament": "Affectionate, Easy Going, Gentle, Loyal, Patient, calm", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The British Shorthair is a very pleasant cat to have as a companion, ans is easy going and placid. The British is a fiercely loyal, loving cat and will attach herself to every one of her family members. While loving to play, she doesn't need hourly attention. If she is in the mood to play, she will find someone and bring a toy to that person. The British also plays well by herself, and thus is a good companion for single people.", "life_span": "12 - 17", "indoor": 0, "lap": 1, "alt_names": "Highlander, Highland Straight, Britannica", "adaptability": 5, "affection_level": 4, "child_friendly": 4, "dog_friendly": 5, "energy_level": 2, "grooming": 2, "health_issues": 2, "intelligence": 3, "shedding_level": 4, "social_needs": 3, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/British_Shorthair", "hypoallergenic": 0, "reference_image_id": "s4wQfYoEk"}
@@ -0,0 +1,162 @@
1
+
2
+ """
3
+ CAT API mock (per-URL caching)
4
+ ----------------------------------------------
5
+ - Prefer packaged per-URL JSONs under mock_requests/data.
6
+ - Else check user cache (~/.cache/mock_requests).
7
+ - Else perform a live GET (unless MOCK_REQUESTS_OFFLINE=1), cache that JSON, and return.
8
+ """
9
+
10
+ import os
11
+ import re
12
+ import json
13
+ import hashlib
14
+ import urllib.parse
15
+ import requests
16
+ from typing import Optional
17
+
18
+ # Find packaged data directory (installed files)
19
+ DATA_DIR = os.path.join(os.path.dirname(__file__), "data")
20
+
21
+ # Compute user-cache directory (can be overridden by env)
22
+ _DEFAULT_USER_CACHE = os.path.join(os.path.expanduser("~"), ".cache", "mock_requests")
23
+ USER_CACHE_DIR = os.getenv("MOCK_REQUESTS_USER_CACHE_DIR", _DEFAULT_USER_CACHE)
24
+
25
+ # Ensure the user-cache directory exists
26
+ if not os.path.isdir(USER_CACHE_DIR):
27
+ os.makedirs(USER_CACHE_DIR, exist_ok=True)
28
+
29
+ # Allowed CAT API prefixes
30
+ _ALLOWED_PREFIXES = ("https://api.thecatapi.com/v1/breeds/",)
31
+
32
+ # Environment controls
33
+ _OFFLINE = os.getenv("MOCK_REQUESTS_OFFLINE", "0") == "1"
34
+ _TIMEOUT = int(os.getenv("MOCK_REQUESTS_TIMEOUT", "30"))
35
+
36
+ def _hash_filename_for(url: str) -> str:
37
+ """
38
+ Turn a URL into a short, safe filename using SHA-256.
39
+ We keep the first 24 hex chars to balance uniqueness and brevity.
40
+ """
41
+ sha = hashlib.sha256(url.encode("utf-8")).hexdigest()
42
+ name = "rc_" + sha[:24] + ".json"
43
+ return name
44
+
45
+ def _path_in_package(filename: str) -> str:
46
+ """
47
+ Build the absolute path to a packaged data file.
48
+ """
49
+ return os.path.join(DATA_DIR, filename)
50
+
51
+ def _path_in_user_cache(filename: str) -> str:
52
+ """
53
+ Build the absolute path to a user-cache data file.
54
+ """
55
+ return os.path.join(USER_CACHE_DIR, filename)
56
+
57
+ class MockResponse:
58
+ """
59
+ Minimal response wrapper with .json(), .text, .ok, .status_code
60
+ backed by a JSON file path.
61
+ """
62
+ def __init__(self, filepath: str, status_code: int) -> None:
63
+ self.filepath = filepath
64
+ self.status_code = status_code
65
+ self._text_cache: Optional[str] = None
66
+
67
+ def json(self):
68
+ if not self.filepath:
69
+ return None
70
+ with open(self.filepath, "r", encoding="utf-8") as f:
71
+ return json.load(f)
72
+
73
+ @property
74
+ def text(self) -> str:
75
+ if self._text_cache is None:
76
+ payload = self.json()
77
+ self._text_cache = json.dumps(payload)
78
+ return self._text_cache
79
+
80
+ @property
81
+ def ok(self) -> bool:
82
+ return 200 <= self.status_code < 300
83
+
84
+ def __str__(self) -> str:
85
+ return f"<Response [{self.status_code}]>"
86
+
87
+ def _is_supported(url: str) -> bool:
88
+ """
89
+ Confirm the URL matches CAT API.
90
+ """
91
+ for prefix in _ALLOWED_PREFIXES:
92
+ if url.startswith(prefix):
93
+ return True
94
+ return False
95
+
96
+ def _load_packaged_or_cached(url: str) -> Optional[MockResponse]:
97
+ """
98
+ Try to satisfy the URL from packaged data, then from user cache.
99
+ Return a MockResponse if found; otherwise None.
100
+ """
101
+ filename = _hash_filename_for(url)
102
+
103
+ # 1) Packaged data
104
+ pkg_path = _path_in_package(filename)
105
+ if os.path.exists(pkg_path) and os.path.getsize(pkg_path) > 0:
106
+ return MockResponse(pkg_path, 200)
107
+
108
+ # 2) User cache
109
+ user_path = _path_in_user_cache(filename)
110
+ if os.path.exists(user_path) and os.path.getsize(user_path) > 0:
111
+ return MockResponse(user_path, 200)
112
+
113
+ return None
114
+
115
+ def _live_fetch_and_cache(url: str) -> Optional[MockResponse]:
116
+ """
117
+ Perform a live GET request, save JSON to user cache (short hashed name), return response.
118
+ Return None if offline or fetch fails.
119
+ """
120
+ if _OFFLINE:
121
+ return None
122
+
123
+ filename = _hash_filename_for(url)
124
+ user_path = _path_in_user_cache(filename)
125
+
126
+ try:
127
+ r = requests.get(url, timeout=_TIMEOUT)
128
+ except requests.RequestException:
129
+ return None
130
+
131
+ try:
132
+ data = r.json()
133
+ except ValueError:
134
+ return None
135
+
136
+ try:
137
+ with open(user_path, "w", encoding="utf-8") as f:
138
+ json.dump(data, f)
139
+ except OSError:
140
+ return None
141
+
142
+ return MockResponse(user_path, r.status_code)
143
+
144
+ def get(url: str) -> MockResponse:
145
+ """
146
+ Public entry point emulating requests.get(url).
147
+ """
148
+ if not _is_supported(url):
149
+ return MockResponse("", 404)
150
+
151
+ # Try packaged or cached
152
+ found = _load_packaged_or_cached(url)
153
+ if found is not None:
154
+ return found
155
+
156
+ # Otherwise live fetch (unless offline), then cache
157
+ fetched = _live_fetch_and_cache(url)
158
+ if fetched is not None:
159
+ return fetched
160
+
161
+ # Give a conservative 404-like response if nothing worked
162
+ return MockResponse("", 404)
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: mock-requests-CatAPI
3
+ Version: 0.0.2
4
+ Summary: mock requests: pre-cached per-URL; missing URLs fetched and cached automatically.
5
+ Home-page: https://example.com/mock-requests-restcountries
6
+ Author: Martin Oman
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Testing
12
+ Classifier: Topic :: Internet :: WWW/HTTP
13
+ Requires-Python: >=3.8
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Provides-Extra: dev
17
+ Requires-Dist: build; extra == "dev"
18
+ Dynamic: license-file
19
+
20
+ # mock-requests
21
+
22
+ A mock for CAT API:
23
+ - Uses **packaged JSONs** for common URLs
24
+ - If a URL isn't cached, it **fetches live once** and caches to `~/.cache/mock_requests`
25
+
26
+ ## Local usage
27
+
28
+ ```bash
29
+ python -m venv .venv
30
+ source .venv/bin/activate # Windows: .venv\Scripts\activate
31
+ pip install -U pip build
32
+ pip install -e ".[dev]"
33
+
34
+ ## Bulk priming
35
+
36
+ - Prime many URLs into **user cache** (and optionally copy into package data):
37
+
38
+ ```bash
39
+ # By default this will make real requests; disable with MOCK_REQUESTS_OFFLINE=1.
40
+ python scripts/bulk_prime.py --urls-file scripts/seed_urls.txt --to-package
41
+ ```
42
+
43
+ ## Runtime behavior
44
+
45
+ Resolution order for a URL:
46
+ 1. **Package data** (`mock_requests/data/*.json`) — fastest
47
+ 2. **User cache** (`~/.cache/mock_requests/*.json`)
48
+ 3. **Live fetch** (unless `MOCK_REQUESTS_OFFLINE=1`), then save to user cache
49
+ 4. Else: return 404-like mock response
50
+
51
+ ## Safety knobs
52
+
53
+ - Set `MOCK_REQUESTS_OFFLINE=1` to **disable** live fetches (e.g., CI).
54
+ - Set `MOCK_REQUESTS_TIMEOUT=30` to adjust HTTP timeout seconds.
55
+ - Set `MOCK_REQUESTS_USER_CACHE_DIR` to customize cache directory.
@@ -0,0 +1,31 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ setup.cfg
6
+ mock_requests/__init__.py
7
+ mock_requests/mock_requests.py
8
+ mock_requests/data/ .json
9
+ mock_requests/data/rc_106a5b1d398387cd8f349af1.json
10
+ mock_requests/data/rc_2075243103f0860bebb9a30d.json
11
+ mock_requests/data/rc_3c4db6918cea431e9a696cc3.json
12
+ mock_requests/data/rc_505561865ab906fc36788d6a.json
13
+ mock_requests/data/rc_53d23e5c9049c53cad215f31.json
14
+ mock_requests/data/rc_5d1ff3321c1046fe10f86295.json
15
+ mock_requests/data/rc_644b4ea763c900bb1ebaca9b.json
16
+ mock_requests/data/rc_6a0c866381cf6f51f6a3c002.json
17
+ mock_requests/data/rc_9bb58e15a5309cd2ebae9af2.json
18
+ mock_requests/data/rc_a332a9a1051c6e5c12d4a7e1.json
19
+ mock_requests/data/rc_ae7f3668ec01e94255e4a47f.json
20
+ mock_requests/data/rc_b58daaa9f7baa877e4cef30e.json
21
+ mock_requests/data/rc_b89de8566a0c50dc3ab73661.json
22
+ mock_requests/data/rc_d000f9ca48cd0722ec2634ec.json
23
+ mock_requests/data/rc_d0689941a91439da4673b87a.json
24
+ mock_requests/data/rc_ddd6d186a1502a122d756d5a.json
25
+ mock_requests/data/rc_e93341eba0e81c6a20ecf8eb.json
26
+ mock_requests/data/rc_eb1aa9e4c11da0b0b5571c83.json
27
+ mock_requests_CatAPI.egg-info/PKG-INFO
28
+ mock_requests_CatAPI.egg-info/SOURCES.txt
29
+ mock_requests_CatAPI.egg-info/dependency_links.txt
30
+ mock_requests_CatAPI.egg-info/requires.txt
31
+ mock_requests_CatAPI.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,34 @@
1
+ [metadata]
2
+ name = mock-requests-CatAPI
3
+ version = 0.0.2
4
+ description = mock requests: pre-cached per-URL; missing URLs fetched and cached automatically.
5
+ long_description = file: README.md
6
+ long_description_content_type = text/markdown
7
+ author = Martin Oman
8
+ license = MIT
9
+ license_files = LICENSE
10
+ url = https://example.com/mock-requests-restcountries
11
+ classifiers =
12
+ Programming Language :: Python :: 3
13
+ License :: OSI Approved :: MIT License
14
+ Intended Audience :: Developers
15
+ Topic :: Software Development :: Testing
16
+ Topic :: Internet :: WWW/HTTP
17
+
18
+ [options]
19
+ packages = find:
20
+ python_requires = >=3.8
21
+ include_package_data = True
22
+
23
+ [options.package_data]
24
+ mock_requests =
25
+ data/*.json
26
+
27
+ [options.extras_require]
28
+ dev =
29
+ build
30
+
31
+ [egg_info]
32
+ tag_build =
33
+ tag_date = 0
34
+