
Keyword Extractor
A powerful API that analyzes text and extracts the most relevant keywords and phrases using Natural Language Processing (NLP) techniques. Our intelligent algorithms identify the most important terms by analyzing word frequency, context, relationship between words, and semantic relevance. Perfect for content categorization, SEO optimization, text summarization, and automated tagging.
API Playground
Test the API endpoints with different parameters and see the responses in real-time.
Extract keywords from text using a GET request with query parameters
Use Case Example
Request Parameters
Required Parameters1
The text content to analyze and extract keywords from
Optional Parameters
ISO 639-1 language code (en, es, fr, de, etc.). Auto-detected if not specified
Maximum number of keywords to return (1-100)
Minimum score threshold for returned keywords (0-1)
Include TF-IDF scores in the response
Include multi-word phrases (bigrams and trigrams)
Include named entities (people, organizations, locations, etc.)
Minimum character length for keywords
Maximum character length for keywords
Sample Code
curl -X GET "/api/keyword-extractor/?text=Natural language processing (NLP) is a subfield of linguistics, computer science, and artificial intelligence concerned with the interactions between computers and human language.&language=&maxKeywords=10&minScore=0.01&includeTFIDF=true&includeNgrams=true&includeEntities=true&minLength=3&maxLength=30" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY"
Ready-to-use code
YOUR_API_KEY
with your actual API key from your developer dashboard.