How can I read Jotform submissions with a .NET language console or Windows app?

  • Anthony_DiPaolo
    Asked on April 1, 2025 at 2:12 PM

    We have recently had a new website developed for us and it uses Jotform.

    I want to write an app in .NET that can read the submissions. Is this doable? Is there an example somewhere?

  • Lorenz JotForm Support
    Replied on April 1, 2025 at 10:10 PM

    Hi Anthony,

    Thanks for reaching out to Jotform Support. I'm not exactly sure how it's done with .NET language, but you can do an API Request to retrieve the submissions. Here's a possible breakdown of the process:

    First, you'll have to obtain your API key:

    1. In your account, in the navigation menu at the top, click on your Profile/Avatar icon at the top-right corner of the page.

    2. In the dropdown, click on Settings.

    3. Now, in the menu on the left side of the page, click on API.

    4. Finally, you'll see there your account's API key. You can click on the Create New Key button, if you don't have one yet.

    How can I read Jotform submissions with a  Screenshot 20

    Next, it's best you visit Jotform's API documentation, to get information about endpoints, authentication, and request parameters. You can check out our API Documentation here. Here's a sample Get Request for retrieving submissions of a specific form.

    https://api.jotform.com/form/{formID}/submissions?apiKey={apiKey}


    Then, you will need to implement the API Request in your .NET application to retrieve the submissions. The API returns data in JSON, so you can use a JSON library to parse the response.

    Let us know if you have any other questions.

Your Answer