ITIS API

Free to Use Varies (check documentation)
77 B
Measured Score 0 50 100 Reachability 30/30 Speed 5/20 Security 15/15 Developer XP 12/20 Reliability 15/15 TESTED 2026-07-23

Overview

ITIS (Integrated Taxonomic Information System) is a free API providing authoritative taxonomic data on plants, animals, fungi, and microbes. You can look up the official scientific classification of any organism by name, Taxonomic Serial Number (TSN), or common name. It is maintained by US government agencies and is highly reliable for biodiversity and biology projects.

Beginner Tip

Search by common name first using the searchByCommonName endpoint to find the TSN, then use that TSN to retrieve full hierarchical classification. All responses are available in JSON by using the /jsonservice/ path in the URL.

Available Data

ITIS data via REST API

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from ITIS",
    "description": "Integrated Taxonomic Information System",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

tsn Taxonomic Serial Number — the unique ITIS identifier for a taxon.
scientificName Full scientific name of the organism.
commonNames List of common name objects with name and language.
kingdom Taxonomic kingdom the organism belongs to (e.g., Animalia, Plantae).
rankName Taxonomic rank of the result (e.g., Species, Genus, Family).

Implementation Example

Request
const url = "https://www.itis.gov/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

null in commonNameList The common name was not found in the ITIS database.
Try the scientific name search endpoint or check for spelling variations of the common name.
XML response instead of JSON Using the wrong service endpoint URL (SOAP vs REST/JSON).
Use the /jsonservice/ path in the URL to get JSON responses instead of XML.
Slow response times The ITIS web service can be slow on large hierarchical queries.
Cache results locally since taxonomic data changes infrequently and avoid repeated identical requests.

Measured Score Breakdown

Live HTTP request to the API endpoint

Reachability 30/30
Speed 5/20
Security 15/15
Developer XP 12/20
Reliability 15/15
Endpoint Response Time 1003ms

Fully tested on Jul 23, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Science & Math
Difficulty Beginner
Verified: 2026-04-04

Related Tags

Similar APIs

View All →