About 652,000 results
Open links in new tab
  1. Is there any standard for JSON API response format?

    Another thing I have experienced in designing REST Api is the importance of documentation for each resource (url): the parameters, the body, the response, the headers etc + examples. I …

  2. REST vs JSON-RPC? - Stack Overflow

    I'm trying to chose between REST and JSON-RPC for developing an API for a web application. How do they compare? Update 2015: I have found REST easier to develop and use for an API …

  3. Is a REST request normally JSON output or something else?

    Feb 26, 2013 · A full REST API like with Java's jax-rs contains definitions for defining a path for a resource, uses the full GET, POST, PUT requests. But, typically when I encounter a REST …

  4. Convert JSON API response to pandas Dataframe - Stack Overflow

    Jun 28, 2017 · I'm struggling to convert a JSON API response into a pandas Dataframe object. I've read answers to similar questions/documentation but nothing has helped. My closest …

  5. Returning JSON object as response in Spring Boot

    Jun 30, 2017 · @RestController @RequestMapping("/api") class MyRestController { @GetMapping(path = "/hello") public JSONObject sayHello() { return new …

  6. rest - Posting a File and Associated Data to a RESTful WebService ...

    Nov 3, 2010 · In an application I am developing RESTful API and we want the client to send data as JSON. Part of this application requires the client to upload a file (usually an image) as well …

  7. json - POST array of objects to REST API - Stack Overflow

    Oct 24, 2014 · Indeed, the API could have a method for accepting single object, which would be called in cycle. However, for performance reasons, I wish to POST multiple objects in one …

  8. json - REST API - file (ie images) processing - Stack Overflow

    Oct 22, 2015 · We are developing server with REST API, which accepts and responses with JSON. The problem is, if you need to upload images from client to server. Note: and also I am …

  9. rest - JSON vs Form POST - Stack Overflow

    Dec 22, 2011 · My current understanding is that, JSON content should be passed as part of POST data, and any optional parameter can still be sent as part of URL parameters. This is …

  10. convert JSON object into REST API - Stack Overflow

    Oct 26, 2018 · The JSON file will contain function and its detail like name, input argument and output (return) parameters. So according to this JSON file, REST API methods should be …