VOOZH about

URL: https://apify.com/openclawmara/gbif-scraper

โ‡ฑ GBIF Scraper โ€” Species Search, Taxonomy & Occurrence Data ยท Apify


Pricing

$5.00 / 1,000 record scrapeds

Go to Apify Store

GBIF Species & Taxonomy Scraper

Scrape GBIF species taxonomy & occurrence data. Extract scientific names, common names, kingdoms, habitats, and classifications from 2.4B+ biodiversity records. Perfect for ecological research, biodiversity monitoring, taxonomy databases, and citizen science apps.

Pricing

$5.00 / 1,000 record scrapeds

Rating

0.0

(0)

Developer

๐Ÿ‘ OpenClaw Mara

OpenClaw Mara

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Categories

Share

GBIF Species & Taxonomy Scraper โ€” 2.4B+ Biodiversity Records

$0.005 per record ยท Extract species, taxonomy, and geographic occurrences from GBIF โ€” the Global Biodiversity Information Facility with 2.4B+ occurrence records from 80,000+ datasets. No API key needed.

Built for biodiversity research, conservation platforms, species distribution models, citizen-science dashboards, and RAG/LLM corpora on ecology and taxonomy.


What You Get

  • Species search โ€” by scientific name, common name, or keyword (full GBIF match API)
  • Full taxonomy โ€” kingdom โ†’ phylum โ†’ class โ†’ order โ†’ family โ†’ genus โ†’ species
  • IUCN Red List โ€” conservation status for threatened species
  • Geographic occurrences โ€” lat/long, country, year, basis-of-record, institution
  • Country filter โ€” narrow occurrences to a specific region (ISO 2-letter code)
  • Coordinate filter โ€” georeferenced records only (ready for GIS / map rendering)
  • Structured JSON โ€” stable GBIF keys, ready for downstream pipelines
  • Public API โ€” no authentication, no quota headaches

4 Use Cases (ready-to-run JSON inputs)

1. Conservation tracker (endangered species in a country)

{
"speciesQueries":["Ailuropoda melanoleuca"],
"includeOccurrences":true,
"maxOccurrences":50,
"country":"CN",
"hasCoordinate":true
}

All georeferenced observations of the giant panda in China โ€” great for conservation dashboards and protected-area monitoring.

2. Taxonomy lookup for a research dataset

{
"speciesQueries":["Quercus","Fagus","Acer"],
"maxSpecies":30,
"includeOccurrences":false
}

Taxonomy for three common tree genera โ€” returns canonical names, IUCN status, and higher ranks. Use to normalize messy species labels in a field dataset.

3. Species distribution model seed data

{
"speciesQueries":["Panthera onca"],
"includeOccurrences":true,
"maxOccurrences":500,
"hasCoordinate":true
}

500 georeferenced jaguar observations worldwide โ€” feed directly into MaxEnt / ecological niche models.

4. Regional biodiversity survey

{
"speciesQueries":["bird","mammal","reptile"],
"maxSpecies":50,
"includeOccurrences":true,
"maxOccurrences":100,
"country":"BR"
}

Broad biodiversity snapshot for Brazil โ€” top species per keyword plus occurrence records. Useful for environmental impact reports.


Input Schema

FieldTypeDefaultDescription
speciesQueriesstring[][]Search species by name (scientific or vernacular)
maxSpeciesinteger20Max species per query (1โ€“300)
includeOccurrencesbooleanfalseAlso fetch occurrence records
maxOccurrencesinteger50Max occurrence records per species
countrystring""ISO 2-letter country filter (US, BR, AU, โ€ฆ)
hasCoordinatebooleantrueOnly include occurrences with GPS coordinates

Output (sample โ€” species + occurrence)

{
"type":"species",
"key":2433433,
"scientificName":"Ailuropoda melanoleuca (David, 1869)",
"canonicalName":"Ailuropoda melanoleuca",
"vernacularName":"Giant Panda",
"kingdom":"Animalia",
"family":"Ursidae",
"genus":"Ailuropoda",
"rank":"SPECIES",
"iucnRedListCategory":"VU",
"numOccurrences":1832,
"occurrences":[
{
"key":4013456123,
"decimalLatitude":30.72,
"decimalLongitude":103.04,
"country":"China",
"year":2023,
"basisOfRecord":"HUMAN_OBSERVATION",
"institutionCode":"iNaturalist"
}
]
}

Pricing & Performance

  • Pay-per-event: $0.005 per species or occurrence record
  • Typical cost: $0.05 for 10 records, $0.50 for 100, $5 for 1,000
  • Speed: ~15โ€“25 records/second (polite 200 ms pacing on GBIF API)
  • Free Apify tier: $5/month credit = ~1,000 records/month

Compare to commercial biodiversity data APIs: GBIF is CC0 / CC-BY licensed, you pay only for structured extraction and delivery.


Integrations

  • Zapier / Make / n8n โ€” new occurrences โ†’ Airtable / Slack / Notion
  • Vector DBs (Pinecone / Weaviate / Qdrant) โ€” embed species descriptions for semantic "similar species"
  • LangChain / LlamaIndex โ€” RAG over taxonomy + occurrence metadata
  • Neo4j / Graphiti โ€” species โ†’ family โ†’ occurrence โ†’ country graph
  • PostGIS / QGIS โ€” import lat/long for map rendering
  • R / Python (pandas) โ€” ML-ready tables for species distribution models
  • Python SDK
    from apify_client import ApifyClient
    client = ApifyClient("<APIFY_TOKEN>")
    run = client.actor("Helpermara/gbif-scraper").call(
    run_input={"speciesQueries":["Panthera onca"],"includeOccurrences":True,"maxOccurrences":100}
    )
    for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["scientificName"], item.get("iucnRedListCategory"))

FAQ

Do I need a GBIF API key? No. GBIF's public API is free and unauthenticated for all read operations.

How fresh is the data? Live โ€” every request hits api.gbif.org/v1 directly. GBIF itself updates continuously as new datasets are published.

Can I get historical occurrence data? Yes โ€” GBIF aggregates records going back centuries (museum specimens) through to modern citizen-science observations.

What's the IUCN coverage? IUCN Red List category is filled when GBIF has matched it; not all species have formal assessments.

Coordinate uncertainty? Each occurrence includes what GBIF returns โ€” set hasCoordinate: true to filter out records without a lat/long.

License of the data? Occurrences retain their original license (CC0 / CC-BY / CC-BY-NC). Always attribute datasets when publishing.


Keywords

gbif scraper, biodiversity api, species data, taxonomy api, iucn red list, species occurrences, ecological data, conservation data, occurrence records, species distribution model, maxent, gis biodiversity, ebird alternative, inaturalist alternative, openaire biodiversity, environmental monitoring, ecology dataset, open biodiversity, gbif download, species search api


Companions (cross-promo)


Changelog

  • 2026-04-24 โ€” Extended README with use cases, integrations, and FAQ
  • 2026-03-05 โ€” Initial release: species search + occurrences + country filter

You might also like

GBIF Species Occurrence Scraper โ€” Biodiversity Records API

compute-edge/gbif-occurrences-scraper

Extract species occurrence records from GBIF (Global Biodiversity Information Facility). Filter by scientific name, country, date range, and basis of record. Outputs taxonomy, geolocation, and dataset attribution.

GBIF Scraper

crawlergang/gbif-scraper

Scrape GBIF (Global Biodiversity Information Facility), 2.7B+ biodiversity occurrence records and 10M+ species. Search species taxonomy, browse occurrence records, explore contributing datasets, or fetch species details with vernacular names.

2

5.0

GBIF Scraper

crawlerbros/gbif-scraper

Scrape GBIF (Global Biodiversity Information Facility), 2.7B+ biodiversity occurrence records and 10M+ species. Search species taxonomy, browse occurrence records, explore contributing datasets, or fetch species details with vernacular names.

GBIF Species Occurrences Scraper

compute-edge/gbif-species-occurrences-scraper

Extract species occurrence records from GBIF, the Global Biodiversity Information Facility (2B+ records). Filter by scientific name, country, taxon, year, and basis of record. Returns taxonomy, coordinates, dates, dataset provenance, and collector metadata for biodiversity and ESG research.

GBIF Biodiversity Scraper - Species, Occurrences

gio21/gbif-scraper

Search species occurrences and taxonomy from GBIF (Global Biodiversity Information Facility) free public API.

GBIF Biodiversity Data Scraper

parseforge/gbif-biodiversity-scraper

Export species records and occurrence data from GBIF, the Global Biodiversity Information Facility. 2.5B+ occurrences across every species on Earth. Search by scientific name or fetch occurrences by location, taxon, or collector. Pull taxonomy, coordinates, and dataset metadata.

GBIF Species & Occurrence API Scraper

jungle_synthesizer/gbif-species-occurrence-api-scraper

Extract biodiversity data from the Global Biodiversity Information Facility (GBIF). Dual-mode: species mode retrieves taxonomy, vernacular names, synonyms, and distributions; occurrence mode streams georeferenced observation records for species distribution modelling and conservation analysis.

๐Ÿ‘ User avatar

BowTiedRaccoon

2