When designing a RESTful API in CodeIgniter, what format is typically used to send responses?

  • CSV
  • HTML
  • JSON
  • XML
In CodeIgniter, JSON is the typical format used to send responses in a RESTful API. JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write, and easy for machines to parse and generate. It is well-suited for representing structured data in the context of a RESTful API.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *