Discover/plantsforafuture.org API
live

plantsforafuture.org APIplantsforafuture.org

Access the PFAF plant database via API. Search by Latin name, browse alphabetically, and retrieve edibility, medicinal, cultivation, and propagation details.

Endpoints
3
Updated
1mo ago
Try it
Latin name or partial Latin name to search for (e.g. 'Rosa', 'Allium')
api.parse.bot/scraper/18f9d0e0-3307-428c-a976-dd138c6806ee/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/18f9d0e0-3307-428c-a976-dd138c6806ee/search_plants?query=Rosa' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search for plants in the PFAF database by Latin name. Returns a list of matching plants with basic characteristics including habit, height, hardiness, soil preferences, and edible/medicinal/other use ratings.

Input
ParamTypeDescription
queryrequiredstringLatin name or partial Latin name to search for (e.g. 'Rosa', 'Allium')
Response
{
  "type": "object",
  "fields": {
    "items": "array of plant summary objects with keys: Latin Name, Common Name, Habit, Height, Hardiness, Growth, Soil, Shade, Moisture, Edible, Medicinal, Other, details_url, latin_name_id",
    "total": "integer count of results returned"
  },
  "sample": {
    "data": {
      "items": [
        {
          "Soil": "LMH",
          "Habit": "Shrub",
          "Other": "3",
          "Shade": "SN",
          "Edible": "2",
          "Growth": "",
          "Height": "2.5",
          "Moisture": "M",
          "Hardiness": "0-0",
          "Medicinal": "2",
          "Latin Name": "Rosa acicularis",
          "Common Name": "Prickly Rose",
          "details_url": "https://pfaf.org/user/Plant.aspx?LatinName=Rosa acicularis",
          "latin_name_id": "Rosa acicularis"
        }
      ],
      "total": 56
    },
    "status": "success"
  }
}

About the plantsforafuture.org API

The Plants For A Future API exposes 3 endpoints covering the PFAF database of edible and medicinal plants. Use search_plants to query by Latin name and get back habit, height, hardiness, soil, shade, moisture, and edible-use ratings. Use get_plant_details to pull full records including cultivation notes, propagation methods, geographic range, known hazards, and separate edible and other-use descriptions for any specific plant.

Searching and Browsing Plants

The search_plants endpoint accepts a query parameter — a full or partial Latin name such as Rosa or Allium — and returns an array of matching plant summary objects. Each item in the response includes Latin Name, Common Name, Habit, Height, Hardiness, Growth, Soil, Shade, Moisture, and Edible rating, plus a total count of results. This makes it practical to build type-ahead search or bulk screening across genus-level queries.

The browse_plants_alphabetically endpoint accepts an optional single letter parameter (A–Z) and returns the same summary object shape for every plant in the database whose Latin name starts with that letter. The total field tells you how many records matched, which helps with pagination logic on the client side.

Detailed Plant Records

For any plant whose exact Latin name you know, get_plant_details returns a substantially richer record. Response fields include family, range, habitats, cultivation, propagation, edible_uses, other_uses, and other_rating (a 1–5 scale). The edible_uses and other_uses fields are free-text descriptions drawn from the PFAF database, so they can contain substantial detail about preparation methods and practical applications. Known hazards and common name are also present in the response.

Common use cases
  • Build a foraging app that surfaces edible plant options by searching partial Latin genus names and displaying Edible ratings.
  • Generate cultivation guides by pulling cultivation and propagation fields for a list of target species.
  • Create a hardiness-zone plant finder by filtering search_plants results on the Hardiness field.
  • Populate a medicinal plant reference tool using edible_uses and other_uses descriptions from get_plant_details.
  • Build a full A–Z plant browser using browse_plants_alphabetically iterated over each letter.
  • Cross-reference plant families and geographic ranges by extracting family and range fields from detailed records.
  • Screen plants by soil and shade tolerance using the Soil, Shade, and Moisture fields returned in search results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Plants For A Future have an official developer API?+
PFAF does not publish an official developer API. The PFAF website at plantsforafuture.org is a publicly browsable plant database, but no documented REST or GraphQL API is available from the organization.
What does `get_plant_details` return that `search_plants` does not?+
search_plants returns summary fields: Latin Name, Common Name, Habit, Height, Hardiness, Growth, Soil, Shade, Moisture, and Edible rating. get_plant_details adds family, range, habitats, cultivation, propagation, edible_uses, other_uses, and other_rating. You need the exact Latin name to call get_plant_details; partial names only work with search_plants.
Does the API expose medicinal use ratings or medicinal use descriptions separately?+
Not currently. The API surfaces edible_uses, other_uses, and other_rating, but a dedicated medicinal rating field and separate medicinal description field are not exposed as distinct response keys. You can fork this API on Parse and revise it to add a medicinal-specific endpoint or field if the underlying PFAF plant pages include that data.
Can I filter `browse_plants_alphabetically` results by soil type, hardiness, or growth rate?+
The endpoint returns the full set of plants for a given letter without server-side filtering. The Soil, Hardiness, and Growth fields are present in each summary object, so filtering must be applied client-side after fetching the result set. You can fork this API on Parse and revise it to add query parameters for server-side filtering.
Does the API cover plant images or external references such as botanical illustrations?+
Not currently. None of the three endpoints return image URLs, illustration links, or external botanical database references. You can fork this API on Parse and revise it to add an endpoint that returns image or reference data if those fields are available on the PFAF plant pages.
Page content last updated . Spec covers 3 endpoints from plantsforafuture.org.
Related APIs in OtherSee all →
rhsplants.co.uk API
Search and browse the RHS Plants catalogue to discover thousands of plants and gardening products. Retrieve detailed specifications, growing conditions, images, and purchasing options for any plant, and filter or sort results by category or keyword.
plantvillage.psu.edu API
Search for crops, diseases, and pests to access detailed agricultural knowledge including treatments, management strategies, and educational content like blog posts and videos. Get comprehensive plant health information with images and disease identification to help diagnose and manage crop problems.
plantix.net API
Access a comprehensive agricultural database covering over 700 plant diseases and pests, with detailed symptoms, treatment options, and prevention methods. Browse cultivation guides for a wide range of crops, retrieve disease risk by growth stage, and explore expert agricultural blog posts — all through a single structured API.
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
cabi.org API
Search and retrieve detailed information about plant diseases from the CABI Digital Library, including disease characteristics, symptoms, and management strategies. Find specific disease data by name or browse the comprehensive Compendium to identify and understand plant health issues.
leafly.com API
Browse and search Leafly's cannabis catalog. Look up strains by effect, flavor, terpene, or medical use. Find dispensaries near any location, explore their menus and product details, and search across strains, brands, dispensaries, and articles.
fdc.nal.usda.gov API
Search across thousands of foods to get detailed nutritional information, serving sizes, and ingredient data from USDA's comprehensive food database. Find nutrition facts for branded products, legacy foods, and foundation foods all in one place.
aplaceformom.com API
Search and compare senior care facilities across the country, view detailed information about specific facilities, read resident reviews, and explore state-level senior care overviews. Access comprehensive data on facility types, pricing, availability, contact information, and ratings.