<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Curl on ilham.dev</title><link>https://ilham.dev/tags/curl/</link><description>Recent content in Curl on ilham.dev</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Sun, 27 Sep 2026 00:00:00 +0700</lastBuildDate><atom:link href="https://ilham.dev/tags/curl/index.xml" rel="self" type="application/rss+xml"/><item><title>How I convert a curl command into code I can actually use</title><link>https://ilham.dev/posts/how-to-convert-curl-commands-into-code/</link><pubDate>Sun, 27 Sep 2026 00:00:00 +0700</pubDate><guid>https://ilham.dev/posts/how-to-convert-curl-commands-into-code/</guid><description>API documentation often gives examples as curl commands:
curl -X POST https://api.example.com/users \ -H &amp;#34;Authorization: Bearer TOKEN&amp;#34; \ -H &amp;#34;Content-Type: application/json&amp;#34; \ -d &amp;#39;{&amp;#34;name&amp;#34;:&amp;#34;Ana&amp;#34;}&amp;#39; That is useful for testing, but eventually I need the same request in application code.</description></item><item><title>How I read a curl command before I run it</title><link>https://ilham.dev/posts/how-to-read-a-curl-command-before-running-it/</link><pubDate>Sun, 27 Sep 2026 00:00:00 +0700</pubDate><guid>https://ilham.dev/posts/how-to-read-a-curl-command-before-running-it/</guid><description>A curl command is an HTTP request written for the terminal. Before running one from documentation or chat, I want to know what it will send.
The curl Tester tool gives me a safe place to test the idea before I put it into a script, server, or production workflow.</description></item></channel></rss>