Filter orders using “awaiting shipment ” as a status

How I can filter orders using “awaiting shipment ” as a status

Hi kirti! Welcome!
‘awaiting shipment’ would be a custom status. Here is some more information on how to do that:https://help.shiphero.com/knowledgeBase/10355466.
if that is already done, you can filter them in the API with this query. This query in particular will return only the order number.

 orders(fulfillment_status: "awaiting shipment") {
    request_id
    complexity
    data {
      edges {
        node {
          order_number
        }
      }
    }
  }
}