0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

curl で JSONデータを返すAPI をたたく

Posted at

前提としてMac を使用しています。

curl

Mac には最初から入っているはずだが、入っていない場合は以下のサイトからダウンロード方法を確認
https://curl.haxx.se/

GETでたたく

curl [APIのURL]

返ってくるデータ

JSONで返ってくるんだけど、すごく見にくいデータで返ってくる...

データを整形して返す方法

jqコマンドを使う。
https://stedolan.github.io/jq/download/

インストール方法

brew install jq

Homebrew が入っていない場合は以下↓のコマンドで Homebrew をインストールしてからにしてください

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

jq コマンド 実行方法

curl [APIのURL] | jq .

参考

curl コマンド 使い方メモ
jqコマンドでjsonから必要なデータのみを取得する

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?