পরাগ API FAQ

Is there a rate limit on the API?

For Pollen API, there is a default rate limit of 6,000 queries per minute.

Do I have to enable billing?

Pollen API ব্যবহার করার জন্য একটি বৈধ বিলিং অ্যাকাউন্ট প্রয়োজন৷ See Enable billing to set up your project with a billing account.

What happens if I query a location that is not supported?

If the latitude and longitude are not covered in the supported country list , the response will return a 400 error code with the message, “Information is unavailable for this location. Please try a different location.”

উদ্ভিদের কোনো পরাগ তথ্য না থাকলেও দেশে সমর্থিত হলে কী হবে?

নির্বাচিত অবস্থান এবং তারিখের জন্য কোনও পরাগের ডেটা নেই এমন ক্ষেত্রে, প্রতিক্রিয়াটিতে অনুরোধ করা স্থানে আচ্ছাদিত সমস্ত গাছের জন্য অন্য কোনও ডেটা ক্ষেত্র ছাড়াই উদ্ভিদ কোড এবং প্রদর্শনের নাম অন্তর্ভুক্ত রয়েছে। যেমন:

"dailyInfo": [
    {
      "date": {
        "year": 2023,
        "month": 6,
        "day": 22
      },
      "pollenTypeInfo": [
          {
            "code": "GRASS",
            "displayName": "Grass"
          },
          {
            "code": "TREE",
            "displayName": "Tree"
          },
          {
            "code": "WEED",
            "displayName": "Weed"
          }
        ],
      "plantsInfo": [
          {
            "code": "HAZEL",
            "displayName": "Hazel"
          }
          {
            ...
          }
      ]
    }
]