Discover/National Fertilizers API
live

National Fertilizers APInationalfertilizers.com

Access NFL's fertilizer product catalogue via API. Browse categories, search products, and retrieve FCO specs, NPK percentages, and crop data from nationalfertilizers.com.

Endpoint health
verified 6h ago
list_product_categories
list_products
search_products
get_product
4/4 passing latest checkself-healing
Endpoints
4
Updated
6h ago

What is the National Fertilizers API?

The National Fertilizers Limited API exposes 4 endpoints covering NFL's full product catalogue at nationalfertilizers.com, including fertilizers, bio-fertilizers, and industrial products. Use get_product to retrieve FCO specification tables, parsed NPK nutrient percentages, description paragraphs, and crop mentions for any product. Other endpoints handle category browsing, full product listing, and free-text keyword search across the catalogue.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/ceed16b2-1500-4231-a86f-bbed06e6bc49/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ceed16b2-1500-4231-a86f-bbed06e6bc49/list_product_categories' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nationalfertilizers-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: National Fertilizers product catalogue — bounded, re-runnable."""
from parse_apis.nationalfertilizers_com_api import (
    NationalFertilizers,
    InputNotFound,
)

client = NationalFertilizers()

# Browse all product categories on the site.
for cat in client.categories.list(limit=10):
    print(cat.name, cat.slug)

# Pick the first category and list its products.
cat = client.categories.list(limit=1).first()
if cat is not None:
    for ps in client.product_summaries.list(category=cat.slug, limit=5):
        print(ps.name, ps.category_slugs)

# Search for a keyword, then drill into the first hit's full detail.
hit = client.product_summaries.search(query="urea", limit=1).first()
if hit is not None:
    product = hit.details()
    print(product.name, product.url)
    print("Description:", product.description)
    for spec in product.specifications:
        print(f"  {spec.parameter}: {spec.value}")
    if product.npk is not None:
        print(f"  NPK grade: {product.npk.n}-{product.npk.p}-{product.npk.k}")

# Point lookup by slug with error handling.
try:
    detail = client.products.get(slug="neem-coated-urea")
    print(detail.name, detail.highlights)
except InputNotFound:
    print("Product not found")

print("exercised: categories.list / product_summaries.list / product_summaries.search / details / products.get")
All endpoints · 4 totalmissing one? ·

Returns the product categories shown on the site's Products index (one request, no pagination). Each category carries a slug that list_products accepts as its category filter. One category is titled in Hindi on the English site and its slug is percent-encoded; slug_decoded is the human-readable form while slug is the exact value to pass on.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "number of categories returned",
    "categories": "array of {name, slug (pass to list_products.category), slug_decoded (URL-decoded slug), image_url}"
  },
  "sample": {
    "data": {
      "total": 5,
      "categories": [
        {
          "name": "Fertilizers",
          "slug": "fertilizers",
          "image_url": "https://www.nationalfertilizers.com/wp-content/uploads/2022/12/Neem-Coated-Urea.jpg",
          "slug_decoded": "fertilizers"
        },
        {
          "name": "Traded Products",
          "slug": "traded-products",
          "image_url": "https://www.nationalfertilizers.com/wp-content/uploads/2023/02/traded-productds.png",
          "slug_decoded": "traded-products"
        }
      ]
    },
    "status": "success"
  }
}

About the National Fertilizers API

Product Categories and Listings

list_product_categories returns every category on the NFL Products index in a single request, giving you each category's name, slug, and slug_decoded fields. Note that one category title appears in Hindi on the English site and its slug is percent-encoded — slug_decoded always gives you the readable form. Pass any slug to list_products as the category parameter to retrieve just that category's products. Omitting category fetches all categories and de-duplicates across them; the response includes a categories_failed array so you know if any page failed to load, and categories_covered showing how many products each category contributed.

Product Search

search_products accepts a required query string and an optional page integer (1-based, 10 results per page). Results come back in the site's default order (newest first) and include each product's name, slug, category_slugs, and published date string. The has_more field tells you whether a next page exists. A broad query like urea can match both product names and body text, so results may include related products such as ammonia-based fertilizers.

Per-Product Detail

get_product takes a slug from either list_products or search_products and returns the full product detail page. The specifications array contains parsed rows from FCO specification tables, each as a {parameter, value} pair — covering limits like nutrient minimums and moisture maximums. npk gives numeric N, P, and K percentages extracted from the product name or text (individual members may be null when not stated). highlights returns bullet-point benefit statements, description returns ordered paragraphs, and mentioned_crops lists crop names found anywhere in the product text. image_url is included where the page provides one.

Coverage Notes

The API covers NFL's publicly listed product catalogue: fertilizers (including Urea, DAP, NPK grades), bio-fertilizers, traded products, and industrial chemicals. Products are identified by slug and can belong to multiple categories, reflected in the category_slugs array on both listing and detail responses.

Reliability & maintenanceVerified

The National Fertilizers API is a managed, monitored endpoint for nationalfertilizers.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nationalfertilizers.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official nationalfertilizers.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a searchable NFL product reference tool using search_products query results and get_product detail pages.
  • Extract FCO specification tables for all fertilizers using specifications rows from get_product to compare regulatory parameter limits.
  • Compile a crop-to-fertilizer mapping by collecting mentioned_crops arrays across all products returned by list_products.
  • Track NPK grades across NFL's portfolio by reading npk.n, npk.p, and npk.k fields from each product detail.
  • Audit the full NFL catalogue structure by iterating list_product_categories slugs and counting products per category via categories_covered.
  • Monitor which products appear under multiple categories using the category_slugs array returned by both listing and detail endpoints.
  • Feed product descriptions and highlights into an agronomic recommendation engine using description and highlights fields from get_product.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does National Fertilizers Limited offer an official developer API?+
No. nationalfertilizers.com does not publish a public developer API or documented data feed. This Parse API provides structured access to the product catalogue data available on the public website.
What does `get_product` return beyond basic product info?+
get_product returns specifications as an array of {parameter, value} rows parsed from FCO specification tables on the product page, npk as numeric N/P/K percentages (with individual members null when not stated), mentioned_crops listing crop names found in the text, highlights as bullet-point statements, and description as ordered paragraphs. All fields are returned in a single request per product slug.
Does `search_products` return all matching results at once?+
No. Results come 10 per page in the site's own order (newest first). Use the page parameter (1-based integer) to step through pages. The has_more boolean in the response indicates whether additional pages exist. There is no batch or offset parameter beyond page.
Does the API cover pricing, stock availability, or dealer/distributor locator data?+
Not currently. The API covers product catalogue data: categories, product names and slugs, FCO specifications, NPK values, descriptions, highlights, and crop mentions. Pricing, stock status, and dealer location data are not included in any endpoint response. You can fork this API on Parse and revise it to add an endpoint targeting those sections of the site.
What happens if a category page fails to load when using `list_products` without a category filter?+
The categories_failed array in the response lists any category slugs that returned a non-successful status code during the multi-category fetch. Products from failed categories are simply absent from the products array. categories_covered still reflects which categories were successfully read and how many products each returned.
Page content last updated . Spec covers 4 endpoints from nationalfertilizers.com.
Related APIs in Government PublicSee all →
limitlesslifenootropics.com API
Access data from limitlesslifenootropics.com.
alphaomegapeptide.com API
Access data from alphaomegapeptide.com.
sainsburys.co.uk API
Access Sainsbury's grocery catalogue: search products by keyword, browse the full category hierarchy, retrieve detailed product information, and discover trending searches.
indiamart.com API
Search and browse IndiaMART's export marketplace to find products by category, compare pricing across sellers, and access detailed product information including seller details. Quickly identify the most affordable listings and get comprehensive product specifications to make informed purchasing decisions.
m.indiamart.com API
Search for products on IndiaMART Export and retrieve detailed information including product specifications and seller profiles. Access comprehensive seller data to evaluate vendors and make informed purchasing decisions.
nilacademy.ir API
Access data from nilacademy.ir.
knowde.com API
Search and retrieve detailed information about chemical products, ingredients, suppliers, and brands available on the Knowde marketplace. Find specific formulations, documents, and supplier storefronts across various industries and product categories to discover suppliers and sourcing options.
upag.gov.in API
Access comprehensive agricultural data including crop production estimates, minimum support prices (MSP), crop yield trends, and planting calendars for both domestic and international markets. Search through agricultural reports and statistics to track commodity prices, production forecasts, and seasonal crop information.