Hey!

I’m currently hitting the limits with Postman’s free tier and need your recommendations for alternatives. My company isn’t planning to upgrade to the paid version, so I’m specifically looking for:

Must-have features:

  • Unlimited API requests
  • Collection runner or similar batch testing capability
  • Data import from spreadsheets for test automation
  • The collection runner feature is crucial for my workflow: I heavily rely on being able to import Excel data to generate and map multiple API calls without manual setup.

Has anyone switched from Postman to something else that offers these capabilities? What’s your experience been like?

Thanks in advance for any suggestions! 🙏

  • alienscience@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    5 days ago

    I think that Kreya is worth a mention:

    • It has more complete OAuth2 support than Insomnia.
    • Saves to human readable files.
    • Usable free tier.
    • Cheap Pro tier pricing.
    • dax@feddit.org
      link
      fedilink
      arrow-up
      32
      ·
      edit-2
      9 days ago

      I am disappointed about their recent switch to a subscription model though. They quietly removed the single-time purchase “Golden Edition” and introduced multiple subscriptions. Not a good start, let’s see if the enshittification continues like with all API testing tools.

      • heavydust@sh.itjust.works
        link
        fedilink
        arrow-up
        26
        ·
        9 days ago

        That’s hilarious. I remember Bruno being sold as the better tool because it had no subscription, and they switched to being evil in less than a year.

        • tias@discuss.tchncs.de
          link
          fedilink
          arrow-up
          9
          ·
          9 days ago

          I wonder why is this kind of product so liable to enshittification. It’s just a simple Electron GUI to edit and submit requests to a REST API. Much more complex software has worked fine for years as FOSS.

    • Maestro@fedia.io
      link
      fedilink
      arrow-up
      2
      arrow-down
      2
      ·
      9 days ago

      Yes, Bruno is great! The only downside is that everytime I start it, I have that damn Disney song stuck in my head 😆

  • expr@programming.dev
    link
    fedilink
    arrow-up
    31
    arrow-down
    3
    ·
    edit-2
    9 days ago

    Curl. Everything you described is not hard to do via scripts. I use it every day for all of my API testing needs. You’re also not limited to the features Postman provides.

    • Strykker@programming.dev
      link
      fedilink
      arrow-up
      10
      arrow-down
      1
      ·
      9 days ago

      This is like telling someone who needs a new table saw that they can use a handsaw.

      Like sure it works great, but it’s going to be a long process getting things done compared to something like postman.

      • expr@programming.dev
        link
        fedilink
        arrow-up
        6
        arrow-down
        4
        ·
        9 days ago

        It does not take long to use curl, not sure what you’re talking about. There’s not particularly special about what Postman does.

          • msage@programming.dev
            link
            fedilink
            arrow-up
            5
            arrow-down
            2
            ·
            9 days ago

            Like what?

            I make backends, very complex, yet curl does it all, headers, files, any data, whatever.

            Need to test an API? Swagger will help everyone.

            You need reproducible tests? Write feature tests.

            Need to do many requests to achieve a business goal? Put it into a script. Shell is sufficient for basic needs, use anything that can be interpreted for anything more complex. Though at that point you should have an app to handle distributed states, which is never a fun time.

      • runeko@programming.dev
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        8 days ago

        If a person needs to process an entire kitchen worth of lumber, then yes, tablesaw. If, however, a person needs to build one simple box and also learn how the wood fits together and practice their skills, then handsaw.

        • tatterdemalion@programming.dev
          link
          fedilink
          arrow-up
          2
          arrow-down
          3
          ·
          9 days ago

          It’s almost 30 years old. Not to knock cURL, it’s a staple for sure.

          HTTPie and xh claim to have a more intuitive UX. If the functionality is comparable, I choose tools written in memory-safe languages by default.

          • 0x0@programming.dev
            link
            fedilink
            arrow-up
            1
            ·
            7 days ago

            If being over 30 is “not modern”, OK, sure, but that’s a bit subjective.

            The fuctionality is hardly comparable, cURL supports many protocols. As for memory safety it’s trendy and modern but it hardly makes sense to rewrite such a project in a memory-safe language. It’s been tried though (for some components) and the project lead’s open to that.

    • qaz@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      9 days ago

      How would you test a GraphQL API with curl?

      EDIT: Nevermind I just looked it up and I’ll just stick with postman for now.

      • expr@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        9 days ago

        The same way you test any other API. Not really different. I tend to keep my request bodies in separate files organized in folders to keep things tidy.

  • Rimu@piefed.social
    link
    fedilink
    English
    arrow-up
    21
    arrow-down
    1
    ·
    10 days ago

    All I want is to make API requests with whatever headers but no fucking Electron so the app loads before the heat death of the universe… Please, please

    • CosmicTurtle0@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      7
      ·
      edit-2
      9 days ago

      This is my official recommendation. It aims to be a drop-in replacement of Postman. They don’t have pre/post-execution scripts at the collection level (only at the request level) and there are a few other features missing but they are making pretty good progress.

      I say official because I was on my company’s committee to switch to a new API tool. Though I personally felt that we should have just paid for Postman. But our business risk team didn’t like the terms that Postman had.

    • MajorHavoc@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      9 days ago

      Hopscotch is the one I’ve been recommending, but it has a “use us before we also enshitify” vibe, so I’m going to check out Insomnium, the open fork of Insomnia.

  • brian@programming.dev
    link
    fedilink
    arrow-up
    2
    ·
    9 days ago

    I can use insomnium for almost everything, but it’s not as complete as postman. randomly I’ll run into some problem that makes me go back.

    for instance, there’s no way to just enter binary data on a readable format to send over websocket. with postman there’s an obvious dropdown to send hex encoded data as a binary message.

  • kata1yst@sh.itjust.works
    link
    fedilink
    arrow-up
    2
    ·
    9 days ago

    Milkman. It’s simple and I’ve seen bugs where it hangs, but overall it works well, doesn’t require a login, runs local, is open source, supports postman import, and exports to a nice variety of formats