i ilham.dev
Home Posts Tools Dev Ops Games Playground About Contact

Json

  • How I build mock API responses that look real enough for frontend work

    Mock responses help frontend and integration work move before the real backend endpoint is finished. The API Mock Response Builder tool gives me a safe place to test the idea before I put it into a script, server, or …

    27 Sep 2026 · 2 min read · #api #mock-data #json #tools

  • How I compare two JSON responses without being distracted by formatting

    A JSON diff should compare meaning, not indentation. Two JSON documents can look different as text but still contain the same data. The JSON Diff tool is useful because it lets me check the result in a small, controlled …

    27 Sep 2026 · 2 min read · #json #diff #api #tools

  • How I convert JSON, YAML, and TOML without changing the meaning

    JSON, YAML, and TOML can represent similar configuration data, but they have different syntax and different traps. The JSON/YAML/TOML converters tool is useful because it lets me check the result in a small, controlled …

    27 Sep 2026 · 2 min read · #json #yaml #toml #configuration #tools

  • How I format JSON before debugging it

    JSON is easier to debug when it is valid and formatted. A formatter turns one long line into a structure humans can read. The JSON Formatter tool gives me a safe place to test the idea before I put it into a script, …

    27 Sep 2026 · 2 min read · #json #formatter #api #tools

  • How I generate SQL INSERT statements from CSV or JSON

    Sometimes I have a small table of data and need to insert it into a database. For a few rows, writing SQL by hand is fine. For many rows, it is boring and error-prone.

    27 Sep 2026 · 3 min read · #sql #csv #json #tools

  • How I turn CSV into JSON without breaking the data

    CSV is easy to open in a spreadsheet. JSON is easy to use in APIs and code. Moving between them sounds simple, but small details can break the data. The CSV and JSON Converter helps convert CSV to JSON and JSON back to …

    27 Sep 2026 · 3 min read · #csv #json #data #tools

  • How I turn JSON into CSV for spreadsheets without flattening the wrong thing

    CSV is a table, while JSON can be deeply nested. Conversion works best when the JSON is an array of similar objects. The JSON to CSV tool is useful because it lets me check the result in a small, controlled place before …

    27 Sep 2026 · 2 min read · #json #csv #spreadsheet #tools

  • How I use a JSON viewer when an API response is too large to read

    A JSON viewer is for exploring structure. It helps me see objects, arrays, nested fields, and repeated records without reading one long block of text. The JSON Viewer tool is useful because it lets me check the result in …

    27 Sep 2026 · 2 min read · #json #api #debugging #tools

  • How I use JSONPath when a JSON response is too big to read

    Small JSON is easy to read. Large JSON is different. A real API response can contain nested objects, arrays, metadata, and fields you do not care about. JSONPath helps ask focused questions like:

    27 Sep 2026 · 3 min read · #json #jsonpath #api #tools

  • How I validate JSON with a schema before blaming the API

    When an API receives JSON, it usually expects a certain shape. If one field is missing or one value has the wrong type, the request may fail. A JSON Schema describes that expected shape.

    27 Sep 2026 · 4 min read · #json #schema #api #tools

© 2026 Ilham Andika. All rights reserved.
Contact Terms Privacy Comment Policy RSS GitHub