SKILL.md
IEEE Xplore API
Overview
IEEE Xplore provides access to over 6 million technical documents — journal articles, conference proceedings, technical standards, and books — covering electrical engineering, computer science, and related fields. The API enables metadata search, full-text access (with subscription), and DOI-based batch lookup. Requires an API key (free registration) and institutional subscription for full features.
API Endpoints
Base URL
https://ieeexploreapi.ieee.org/api/v1/search/articles
Metadata Search
# Basic keyword search
curl "https://ieeexploreapi.ieee.org/api/v1/search/articles?\
apikey=YOUR_API_KEY&\
querytext=transformer+attention+mechanism&\
max_records=25"
# Search with filters
curl "https://ieeexploreapi.ieee.org/api/v1/search/articles?\
apikey=YOUR_API_KEY&\
querytext=federated+learning&\
start_year=2022&\
end_year=2026&\
content_type=Conferences&\
max_records=50"
Query Parameters
| Parameter | Description | Example |
|---|---|---|
apikey | API key (required) | apikey=YOUR_KEY |
querytext | Free-text search | querytext=neural+network |
article_title | Title search | article_title=BERT |
author | Author name | author=Vaswani |
abstract | Abstract search | abstract=reinforcement+learning |
index_terms | IEEE keyword terms | index_terms=machine+learning |
