Keyword Extractor

Keyword Extractor

Text Analysis & NLP
4.678 reviews
280ms

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.

Multi-Language Support
TF-IDF Analysis
N-gram Extraction
Entity Recognition
Score-Based Ranking
Customizable Parameters
Statistical Insights
Language Detection

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

GET/api/keyword-extractor/

Request Parameters

GET/api/keyword-extractor/

Required Parameters1

string

The text content to analyze and extract keywords from

Optional Parameters

8 available
string

ISO 639-1 language code (en, es, fr, de, etc.). Auto-detected if not specified

integer

Maximum number of keywords to return (1-100)

float

Minimum score threshold for returned keywords (0-1)

boolean

Include TF-IDF scores in the response

boolean

Include multi-word phrases (bigrams and trigrams)

boolean

Include named entities (people, organizations, locations, etc.)

integer

Minimum character length for keywords

integer

Maximum character length for keywords

Sample Code

curl
1
2
3
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"