List  JSONs
In order to list JSONs, you will need to send a POST request. However, before doing so, you must provide your account's API Key and API Secret. You can find these credentials by navigating to the "Developers" tab on your account settings page.

URL


https://client.logoom.io/api/data/json/list

NPM


https://www.npmjs.com/package/logoom


  • cURL
  • Node.js
  • PHP
  • C#
POST/CreateLandscape picture
curl -X GET \
  https://client.logoom.io/api/data/json/list \
  -H 'Content-Type: application/json' \
  -H 'apikey: your-api-key' \
  -H 'apisecret: your-api-secret' \
Response
{
  "success": true,
  "message": "LOGOOM.SUCCESS",
  "statusCode": 200,
  "data": [
    {
      "id": 1,
      "value": "{'name':'Jon'}",
      "is_deleted": "false",
      "date_created": "2023-03-23T19:47:13.415Z",
      "date_updated": "2023-06-05T10:53:48.572Z",
      "collection_id": {
        "id": 1
      }
    }
  ]
}