# iNaturalist Oak Tree Observations Scraper

**Use case:** 

Scrape oak tree observations from iNaturalist with species, taxon name, common name, and date. Export structured biodiversity data to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "taxonName": "oak",
  "qualityGrade": "research",
  "hasPhotos": false,
  "orderBy": "created_at"
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "speciesGuess": {
    "label": "Species Guess",
    "format": "text"
  },
  "taxonName": {
    "label": "Taxon Name",
    "format": "text"
  },
  "taxonCommonName": {
    "label": "Taxon Common Name",
    "format": "text"
  },
  "taxonRank": {
    "label": "Taxon Rank",
    "format": "text"
  },
  "observedOn": {
    "label": "Observed On",
    "format": "date"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "latitude": {
    "label": "Latitude",
    "format": "text"
  },
  "longitude": {
    "label": "Longitude",
    "format": "text"
  },
  "placeGuess": {
    "label": "Place Guess",
    "format": "text"
  },
  "qualityGrade": {
    "label": "Quality Grade",
    "format": "text"
  },
  "numIdentificationAgreements": {
    "label": "Num Identification Agreements",
    "format": "text"
  },
  "numIdentificationDisagreements": {
    "label": "Num Identification Disagreements",
    "format": "text"
  },
  "photoUrls": {
    "label": "Photo Urls",
    "format": "image"
  },
  "userName": {
    "label": "User Name",
    "format": "text"
  },
  "userLogin": {
    "label": "User Login",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [iNaturalist Scraper](https://apify.com/parseforge/inaturalist-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/inaturalist-scraper) to learn more, explore other use cases, and run it yourself.