ホームページ > ウェブフロントエンド > jsチュートリアル > 知っておくべきトップの無料 API

知っておくべきトップの無料 API

Barbara Streisand
リリース: 2024-09-19 22:30:10
オリジナル
413 人が閲覧しました

Top Free APIs You Should Know

最新のソフトウェアを作成するには、API、つまりアプリケーション プログラミング インターフェイスの使用が不可欠です。これらは、アプリケーション間の通信、データ共有、さまざまなプラットフォームやサービスからのサービス アクセスを提供します。 API は開発プロセスを合理化し、モバイル アプリ、Web アプリ、またはその他の種類のソフトウェアを作成する場合に時間を節約できます。この記事では、2024 年までに知っておくべき 10 個の無料 API を検討し、それらの使用方法を理解するのに役立つコード例を提供し、いくつかのユースケースについて説明します。

開発者にとって API が重要なのはなぜですか?

API は、アプリ用の既製の構築要素を提供することにより、開発プロセスを簡素化します。支払い、気象情報、ユーザー識別などの機能を管理するには、サービスを最初から作成するのではなく、現在のサービスを統合することができます。プレミアム サービスを利用する資金がない新興企業、アマチュア、小規模企業は、無料 API から最も恩恵を受ける可能性があります。

知っておくべき無料 API のトップ 10 は次のとおりです:

  1. OpenWeather API

OpenWeather API は、リアルタイムの気象データにアクセスするための最も人気のある無料 API の 1 つです。あらゆる都市や地域の現在の天気、予報、過去の気象データを取得できます。

ユースケース

OpenWeather は、旅行アプリ、イベント プランナー、環境監視システムなど、リアルタイムの天気更新が必要なアプリケーションに最適です。

コード例: Python で天気データを取得する

import requests

api_key = "your_api_key"
city = "London"
url = f"http://api.openweathermap.org/data/2.5/weather?q={city}&appid={api_key}"

response = requests.get(url)
weather_data = response.json()

print(f"City: {weather_data['name']}")
print(f"Weather: {weather_data['weather'][0]['description']}")
ログイン後にコピー

主な機能:

現在の気象データ

最大 16 日間の天気予報

無料枠には 1 分あたり 60 回の通話が含まれます

リファレンス: OpenWeather API ドキュメント

  1. GitHub API

GitHub API は、GitHub リポジトリと対話するための素晴らしいツールです。問題の管理、プル リクエスト、さらにはリポジトリ イベントの Webhook の設定などのタスクを自動化できます。

ユースケース

GitHub API は、オープンソース プロジェクトに取り組み、リポジトリ管理を自動化し、アプリにバージョン管理機能を統合する開発者にとって不可欠です。

コード例: JavaScript で GitHub リポジトリの詳細を取得する

const fetch = require('node-fetch');

const repo = 'nodejs/node';
const url = `https://api.github.com/repos/${repo}`;

fetch(url)
  .then(res => res.json())
  .then(data => {
    console.log(`Repo: ${data.name}`);
    console.log(`Stars: ${data.stargazers_count}`);
  });
ログイン後にコピー

主な機能:

リポジトリ情報へのアクセス

問題とプルリクエストを管理する

無料利用枠では、パブリック リポジトリに無制限にアクセスできます

リファレンス: GitHub API ドキュメント

  1. ニュースAPI

NewsAPI はさまざまなソースからニュース記事を集約し、開発者がリアルタイムのニュースや記事に簡単にアクセスできるようにします。この API は、ニュース アプリ、コンテンツ キュレーション プラットフォーム、または市場分析ツールに特に役立ちます。

ユースケース

NewsAPI を使用すると、最新のニュースの見出しを表示したり、特定のトピックを検索したり、テクノロジー、政治、スポーツなどのカテゴリでニュースをフィルターしたりすることができます。

コード例: Python で上位の見出しを取得する

import requests

api_key = "your_api_key"
url = f"https://newsapi.org/v2/top-headlines?country=us&apiKey={api_key}"

response = requests.get(url)
news = response.json()

for article in news['articles']:
    print(f"Title: {article['title']}")
ログイン後にコピー

主な機能:

何千ものニュースソースからのヘッドラインへのアクセス

トピック、地域、出版物ごとにニュースをフィルタリングします

無料利用枠では 1 日あたり 1,000 件のリクエストが許可されます

参考: NewsAPI ドキュメント

  1. Twitter API

Twitter API を使用すると、開発者は Twitter からのリアルタイムのソーシャル メディア データをアプリケーションに統合できます。ツイート、ユーザープロフィール、トレンドを取得できます。

ユースケース

Twitter API を使用して、トレンドを監視したり、ユーザーのツイートを取得したり、特定のハッシュタグやトピックへのエンゲージメントを追跡したりできます。これは、ソーシャル メディア ダッシュボード、コンテンツ マーケティング ツール、感情分析に特に役立ちます。

コード例: Python でユーザーのツイートを取得する

import tweepy

api_key = "your_api_key"
api_secret = "your_api_secret"
auth = tweepy.AppAuthHandler(api_key, api_secret)
api = tweepy.API(auth)

tweets = api.user_timeline(screen_name="elonmusk", count=5)

for tweet in tweets:
    print(f"{tweet.user.screen_name}: {tweet.text}")
ログイン後にコピー

主な機能:

公開ツイートとユーザーデータへのアクセス

リアルタイムのツイートをストリーミングします

無料利用枠では公開ツイートにアクセスできます

参考: Twitter API ドキュメント

  1. CoinGecko API

CoinGecko API は、ライブ価格、取引高、時価総額、履歴データなどの暗号通貨市場データを提供します。 6000 以上の暗号通貨をサポートしています。

ユースケース

仮想通貨ポートフォリオ追跡アプリ、市場分析プラットフォーム、またはリアルタイム価格フィードの金融アプリケーションへの統合に最適です。

コード例: Python で暗号通貨の価格を取得する

import requests

url = "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd"

response = requests.get(url)
data = response.json()

print(f"Bitcoin: ${data['bitcoin']['usd']}")
print(f"Ethereum: ${data['ethereum']['usd']}")
ログイン後にコピー

主な機能:

仮想通貨のライブ価格

6000 以上の暗号通貨をサポート

無料利用枠により、さまざまなエンドポイントへのアクセスが提供されます

リファレンス: CoinGecko API ドキュメント

  1. OpenAI API

OpenAI API は GPT-4 などの強力な AI モデルへのアクセスを提供し、開発者がテキストを生成したり、質問に答えたり、会話エージェントを作成したりするアプリケーションを構築できるようにします。

ユースケース

OpenAI is perfect for creating AI-driven chatbots, content generation tools, or applications that need natural language processing (NLP) capabilities.

Code Example: Text Generation in Python

import openai

openai.api_key = "your_api_key"
prompt = "Explain the benefits of using APIs in web development."

response = openai.Completion.create(
  engine="text-davinci-003",
  prompt=prompt,
  max_tokens=100
)

print(response.choices[0].text.strip())
ログイン後にコピー

Key Features:

AI-based text generation and processing

NLP capabilities for a variety of use cases

Free tier with limited requests

Reference: OpenAI API Documentation

  1. Firebase API

The Firebase API is a comprehensive platform for building and running web and mobile applications, offering real-time databases, authentication, hosting, and cloud functions.

Use Case

Firebase is great for real-time chat apps, user authentication, and cloud-based backends for mobile and web applications.

Code Example: Real-Time Database in JavaScript

const firebase = require('firebase/app');
require('firebase/database');

const firebaseConfig = {
  apiKey: "your_api_key",
  authDomain: "your_project.firebaseapp.com",
  databaseURL: "https://your_project.firebaseio.com",
};

firebase.initializeApp(firebaseConfig);

const db = firebase.database();
db.ref('users/').set({
  username: "John Doe",
  email: "johndoe@gmail.com"
});
ログイン後にコピー

Key Features:

Real-time database

Authentication services

Free tier offers basic functionality for small-scale apps

Reference: Firebase API Documentation

  1. NASA API

The NASA API provides access to a vast collection of space data, including images, videos, and information about planets, stars, and other celestial objects.

Use Case

NASA API is ideal for educational apps, space-themed websites, and applications that visualize or use space data.

Code Example: Fetch NASA Image of the Day in Python

import requests

api_key = "your_api_key"
url = f"https://api.nasa.gov/planetary/apod?api_key={api_key}"

response = requests.get(url)
data = response.json()

print(f"Title: {data['title']}")
print(f"URL: {data['url']}")
ログイン後にコピー

Key Features:

Access to space images and data

Variety of endpoints for different datasets

Free tier with unlimited access to public datasets

Reference: NASA API Documentation

  1. Jikan API

The Jikan API is a free API for accessing information on anime, manga, and characters from MyAnimeList.

Use Case

Jikan is a must-have API for developers working on anime-related apps or websites. It allows you to fetch detailed information about anime series, episodes, characters, and more.

Code Example: Fetch Anime Details in Python

import requests

anime_id = 1  # ID for the anime "Cowboy Bebop"
url = f"https://api.jikan.moe/v3/anime/{anime_id}"

response = requests.get(url)
data = response.json()

print(f"Title: {data['title']}")
print(f"Synopsis: {data['synopsis']}")
ログイン後にコピー

Key Features:

Detailed anime and manga information

Supports filtering by genres, popularity, and airing status

Free tier provides unlimited access to all public endpoints

Reference: Jikan API Documentation

  1. Cat Facts API

The Cat Facts API is a fun and quirky API that provides random facts about cats. It’s a light-hearted API but can be a great addition to apps and websites that want to provide users with fun and interesting content.

Use Case

This API is perfect for entertainment apps, fun widgets, or even as a daily dose of fun facts for your users.

Code Example: Fetch Random Cat Fact in JavaScript

const fetch = require('node-fetch');

fetch('https://catfact.ninja/fact')
  .then(res => res.json())
  .then(data => {
    console.log(`Cat Fact: ${data.fact}`);
  });
ログイン後にコピー

Key Features:

Random cat facts

Free tier provides unlimited access

Reference: Cat Facts API Documentation

Conclusion

APIs are powerful tools that can significantly enhance your application's capabilities without requiring you to build everything from scratch. The 10 free APIs covered in this post can help you add features like weather updates, cryptocurrency data, social media integration, and even AI-driven text generation to your apps.

These APIs not only offer free tiers but also provide robust documentation and easy-to-use interfaces for developers of all levels. Whether you're building a simple app or a complex platform, these APIs can help you save time and focus on building unique features for your users.

Integrating these APIs is just a matter of writing a few lines of code, as shown in the examples. Now that you know which APIs to explore, start experimenting with them to see how they can take your development process to the next level!

以上が知っておくべきトップの無料 APIの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート