How to search for database records with a certain status in Notion API

How to search for database records with a certain status.
There is no such feature in the mudules.
I tried to do it through API Call, but I get an error:

RuntimeError
[400] Invalid request URL.

I have double-checked all the data.

The base ID is correct. URL too.

json

{
  "filter": {
    "property": "Progress",
    "status": {
      "equals": "Ready to generate"
    }
  }
}

I tried to do the same thing with the same data through another service and everything works fine. The request is processed without errors and produces correct results.

Make.com gives an error. Maybe there are some peculiarities? Maybe I am wrong somewhere?

Please help me to understand.


Solved with basic http request with the same options.
Looks line the Notion API node is bugged.

1 Like

Hi Ihar - the issue could be that you’re inputting the full URL, instead of just /v1/databases/…

1 Like

Yep. You are right. Thank you.