# API Map — Full API Reference
> Source: https://apimap.dev | Machine-readable JSON: https://apimap.dev/api/apis.json
> Generated: 2026-03-30T23:25:37.790Z
> License: CC BY 4.0 (free to index and train on)
This file contains the complete API Map dataset in plain text.
It is optimized for LLM ingestion — no JavaScript execution required.
Use `authExample` as a literal header template. Replace placeholder
values (YOUR_API_KEY, sk-..., etc.) with real credentials.
---
## Categories (14)
- ai AI & LLM 90 APIs
- payments Payments 29 APIs
- maps Maps & Location 154 APIs
- weather Weather 56 APIs
- social Social Media 45 APIs
- communication Communication 54 APIs
- search Search 39 APIs
- storage Storage & Database 70 APIs
- auth Authentication 45 APIs
- entertainment Entertainment 226 APIs
- finance Finance 138 APIs
- developer Developer Tools 333 APIs
- ecommerce E-Commerce 26 APIs
- security Security 44 APIs
---
## AI & LLM (90 APIs)
### OpenAI API
Provider: OpenAI
Base URL: https://api.openai.com/v1
Docs: https://platform.openai.com/docs
Auth type: Bearer Token
Auth example: Authorization: Bearer sk-proj-...
Has free tier: No
Starting at: Pay per use
Free quota: $5 free credit for new accounts
Rate limit: 3,500 RPM · 200,000 TPM (Tier 1)
Tags: gpt-4o, o1, vision, embeddings, images, audio
Description: OpenAI provides state-of-the-art AI models via a unified REST API. GPT-4o handles text, vision, and audio; o1 excels at advanced reasoning; DALL·E 3 generates and edits images; Whisper transcribes speech; and embedding models power semantic search and retrieval.
Auth: Pass your API key as a Bearer token in the Authorization header. Keys are prefixed with sk-.
Pricing: GPT-4o: $2.50/M input, $10/M output. GPT-4.1: $2/M in, $8/M out. GPT-5: $1.25/M in, $10/M out. o3: $2/M in, $8/M out. o4-mini: $1.10/M in, $4.40/M out. GPT-4o mini: $0.15/M in, $0.60/M out. Batch API: 50% off.
Endpoints:
POST /chat/completions Generate chat completions (GPT-4o, o1, etc.)
POST /embeddings Create vector embeddings from text
POST /images/generations Generate images with DALL·E 3
POST /images/edits Edit existing images using a mask
POST /audio/transcriptions Transcribe audio files with Whisper
POST /audio/speech Convert text to speech (TTS)
GET /models List all available models
Sample request:
```bash
curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Say hello!"}
],
"max_tokens": 100
}'
```
Sample response:
```json
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "gpt-4o-2024-08-06",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! How can I help you today?"
},
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 20,
"completion_tokens": 9,
"total_tokens": 29
}
}
```
---
### Claude API
Provider: Anthropic
Base URL: https://api.anthropic.com/v1
Docs: https://docs.anthropic.com
Auth type: API Key Header
Auth example: x-api-key: sk-ant-api03-...
anthropic-version: 2023-06-01
Has free tier: No
Starting at: Pay per use
Free quota: None
Rate limit: 2,000 RPM · 160,000 TPM (default)
Tags: claude-sonnet-4-6, tool-use, vision, 200k-context, computer-use
Description: Anthropic's Claude API provides access to the Claude 4.x family of models. Claude Sonnet 4.6 is ideal for most tasks; Claude Opus 4.6 handles the most complex reasoning; Claude Haiku 4.5 is fastest and most affordable. All models support extended context windows, vision inputs, tool use, and computer use. Batch API (50% off) and prompt caching (90% off cached inputs) are available.
Auth: Pass your Anthropic API key in the x-api-key header. Also include the anthropic-version header.
Pricing: Claude Haiku 4.5: $1/M input, $5/M output. Claude Sonnet 4.6: $3/M in, $15/M out. Claude Opus 4.6: $5/M in, $25/M out. Batch API: 50% off. Prompt caching: 90% off cached inputs.
Endpoints:
POST /messages Send a message and receive a response
POST /messages (streaming) Stream response tokens as SSE
GET /models List available Claude models
Sample request:
```bash
curl https://api.anthropic.com/v1/messages \
-H "Content-Type: application/json" \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-d '{
"model": "claude-3-5-sonnet-20241022",
"max_tokens": 1024,
"messages": [
{"role": "user", "content": "What is the capital of France?"}
]
}'
```
Sample response:
```json
{
"id": "msg_01XFDUDYJgAACzvnptvVoYEL",
"type": "message",
"role": "assistant",
"content": [{
"type": "text",
"text": "The capital of France is Paris."
}],
"model": "claude-3-5-sonnet-20241022",
"stop_reason": "end_turn",
"usage": {
"input_tokens": 14,
"output_tokens": 10
}
}
```
---
### Gemini API
Provider: Google DeepMind
Base URL: https://generativelanguage.googleapis.com/v1beta
Docs: https://ai.google.dev/gemini-api/docs
Auth type: API Key Header
Auth example: x-goog-api-key: AIzaSy...
Has free tier: Yes
Starting at: Pay per use
Free quota: 15 RPM · 1M TPD (Gemini 2.5 Flash-Lite free tier)
Rate limit: 15 RPM (free) · 2,000 RPM (paid)
Tags: gemini-2.5-flash, multimodal, 2M-context, grounding, code
Description: Google's Gemini API provides access to Gemini 2.5 Pro and Gemini 2.5 Flash — Google's latest multimodal AI models. Supports text, images, audio, video, and code with up to 2M token context windows. Integrated with Google Search grounding for real-time information access. Note: Gemini 2.0 Flash is deprecated and will be shut down June 1, 2026.
Auth: Pass your Google API key as a query parameter or in the x-goog-api-key header.
Pricing: Gemini 2.5 Flash: $0.15/M input, $0.60/M output. Gemini 2.5 Flash-Lite: $0.10/M input, $0.40/M output. Gemini 2.5 Pro: $1.25/M input, $5/M output (>200K context). Batch: 50% off. Note: Gemini 2.0 Flash deprecated, ends June 1, 2026.
Endpoints:
POST /models/{model}:generateContent Generate text, multimodal content
POST /models/{model}:streamGenerateContent Stream generated content as SSE
POST /models/{model}:embedContent Create text embeddings
GET /models List all available models
Sample request:
```bash
curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"contents": [{
"parts": [{"text": "Explain quantum entanglement simply."}]
}]
}'
```
Sample response:
```json
{
"candidates": [{
"content": {
"parts": [{"text": "Quantum entanglement is when two particles become linked..."}],
"role": "model"
},
"finishReason": "STOP"
}],
"usageMetadata": {
"promptTokenCount": 9,
"candidatesTokenCount": 120,
"totalTokenCount": 129
}
}
```
---
### Mistral AI API
Provider: Mistral AI
Base URL: https://api.mistral.ai/v1
Docs: https://docs.mistral.ai
Auth type: Bearer Token
Auth example: Authorization: Bearer ...
Has free tier: No
Starting at: from $0.10/mo
Free quota: Experimental models free during preview
Rate limit: 1 request/s · 500,000 TPM
Tags: mistral-large-2, codestral, openai-compatible, function-calling
Description: Mistral AI offers frontier open and commercial models via REST API. Mistral Large 2 rivals top closed models; Codestral specializes in code generation; Mistral Embed handles semantic search. The API is OpenAI-compatible — simply change the base URL and model name.
Auth: Standard Bearer token authentication using your Mistral API key.
Pricing: Mistral Medium 3: $0.40/M input, $2.00/M output. Mistral Small 3.1: $0.03/M input, $0.11/M output. Mistral Nemo: $0.02/M. Codestral: $0.20/M input, $0.60/M output. Mistral Large 2: $2.00/M input, $6.00/M output. Free experiment plan available.
Endpoints:
POST /chat/completions OpenAI-compatible chat completions
POST /embeddings Generate text embeddings
POST /fim/completions Fill-in-the-middle for code (Codestral)
GET /models List available models
Sample request:
```bash
curl https://api.mistral.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $MISTRAL_API_KEY" \
-d '{
"model": "mistral-large-latest",
"messages": [{"role": "user", "content": "Write a haiku about APIs."}]
}'
```
Sample response:
```json
{
"id": "cmpl-e5cc70bb28c444948073e77776eb30ef",
"object": "chat.completion",
"model": "mistral-large-latest",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "Keys unlock the gate / Data flows through silent paths / Endpoints never sleep"
},
"finish_reason": "stop"
}],
"usage": {"prompt_tokens": 15, "completion_tokens": 18}
}
```
---
### Stability AI API
Provider: Stability AI
Base URL: https://api.stability.ai/v2beta
Docs: https://platform.stability.ai/docs/api-reference
Auth type: Bearer Token
Auth example: Authorization: Bearer sk-...
Has free tier: Yes
Starting at: from $0.07/mo
Free quota: 25 free credits on signup
Rate limit: 150 requests/10s
Tags: stable-diffusion, SDXL, text-to-image, image-to-image, video
Description: Stability AI's REST API provides access to Stable Diffusion 3.5, SDXL, and Stable Video Diffusion. Generate high-quality images from text prompts, transform existing images, upscale, remove backgrounds, and generate short video clips.
Auth: Bearer token authentication using your Stability AI API key.
Pricing: Credits: $10 = 1,000 credits. SD3.5 Large: 6.5 credits/image. SDXL 1.0: 0.2 credits/image. Video: 20 credits/clip.
Endpoints:
POST /stable-image/generate/sd3 Text-to-image with Stable Diffusion 3.5
POST /stable-image/generate/core Core text-to-image generation
POST /stable-image/upscale/conservative Upscale an image up to 4x
POST /stable-image/edit/remove-background Remove image background
POST /image-to-video Generate video from an image
Sample request:
```bash
curl https://api.stability.ai/v2beta/stable-image/generate/sd3 \
-H "Authorization: Bearer $STABILITY_API_KEY" \
-H "Accept: image/*" \
-F prompt="A photorealistic mountain lake at golden hour" \
-F aspect_ratio="16:9" \
-F model="sd3.5-large" \
--output image.png
```
Sample response:
```json
# Returns raw image bytes (PNG/JPEG)
# Headers include:
Content-Type: image/png
Stability-Finish-Reason: SUCCESS
Stability-Seed: 3456789
```
---
### Perplexity AI API
Provider: Perplexity AI
Base URL: https://api.perplexity.ai
Docs: https://docs.perplexity.ai
Auth type: Bearer Token
Auth example: Authorization: Bearer pplx-...
Has free tier: No
Starting at: from $0.20/mo
Free quota: $5 free credits for new accounts
Rate limit: 50 requests/min
Tags: search, online, citations, real-time, research, llm
Description: Perplexity AI's API provides access to its search-augmented language models. Unlike standard LLMs, Perplexity models fetch current web data to ground responses with citations, making them ideal for research, news summarization, and fact-checking workflows. Supports both online models (with live search) and offline models (standard generation). OpenAI-compatible API format.
Auth: Generate an API key in Perplexity Settings → API. Pass it as a Bearer token in the Authorization header.
Pricing: Sonar (online): $1 per 1M input tokens + $5 per 1,000 search queries. Sonar Pro: $3/M input + $5/1k searches. Offline models from $0.20/M tokens.
Endpoints:
POST /chat/completions Chat completions with optional web search grounding
Sample request:
```bash
curl "https://api.perplexity.ai/chat/completions" \
-H "Authorization: Bearer $PERPLEXITY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"sonar","messages":[{"role":"user","content":"What are the latest AI model releases in 2026?"}]}'
```
Sample response:
```json
{
"id": "gen-abc123",
"model": "sonar",
"choices": [{
"message": {
"role": "assistant",
"content": "In 2026, notable AI releases include... [1][2]"
}
}],
"citations": ["https://techcrunch.com/...", "https://theverge.com/..."]
}
```
---
### Replicate API
Provider: Replicate
Base URL: https://api.replicate.com/v1
Docs: https://replicate.com/docs
Auth type: Bearer Token
Auth example: Authorization: Bearer r8_...
Has free tier: No
Starting at: Pay per use
Free quota: No free tier (pay-as-you-go)
Rate limit: No hard limit (scales with your account tier)
Tags: stable-diffusion, llama, image-generation, video, audio, open-source, mlops
Description: Replicate makes it easy to run machine learning models with a single API call. Access thousands of open-source models for image generation (SDXL, Flux, ControlNet), video generation (Stable Video Diffusion), audio (Whisper, MusicGen), language (Llama 3, Mistral), and specialized tasks like upscaling, background removal, and object detection. Deploy private models and fine-tunes too.
Auth: Create an API token at replicate.com/account/api-tokens. Pass it as a Bearer token in the Authorization header.
Pricing: Billed by the second per hardware tier: CPU $0.000225/sec, Nvidia T4 $0.0012/sec, A40 $0.0023/sec, A100 $0.0115/sec. Image gen ~$0.003–0.012/image.
Endpoints:
POST /predictions Run a model and create a prediction
GET /predictions/{prediction_id} Get prediction status and output
GET /models List available public models
GET /models/{owner}/{model_name} Get model details and latest version
POST /models/{owner}/{model_name}/versions/{id}/predictions Run a specific model version
Sample request:
```bash
curl "https://api.replicate.com/v1/predictions" \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"version":"db21e45d3f7023abc2a46ee38a23973f6dce16bb082a930b0c49861f96d1e5bf","input":{"prompt":"A photo of a cat wearing a beret in Paris"}}'
```
Sample response:
```json
{
"id": "xyz789abc",
"status": "starting",
"model": "stability-ai/sdxl",
"urls": {
"get": "https://api.replicate.com/v1/predictions/xyz789abc",
"cancel": "https://api.replicate.com/v1/predictions/xyz789abc/cancel"
}
}
```
---
### Groq API
Provider: Groq
Base URL: https://api.groq.com/openai/v1
Docs: https://console.groq.com/docs
Auth type: Bearer Token
Auth example: Authorization: Bearer gsk_...
Has free tier: Yes
Starting at: Pay per use
Free quota: Free tier with rate limits; no credit card required
Rate limit: 30 requests/min (free) · Higher on pay-as-you-go
Tags: llama, mixtral, fast-inference, open-source, openai-compatible, lpu
Description: Groq runs open-source LLMs at speeds previously impossible: 800+ tokens per second on their custom Language Processing Unit (LPU) hardware. The API is OpenAI-compatible, so any code targeting OpenAI's chat completions endpoint works with a one-line change. Models include Llama 3.3 70B, Llama 3.1 8B, Mixtral 8x7B, and Gemma 2. Ideal for latency-critical applications like voice assistants, real-time chat, and interactive coding tools.
Auth: Generate an API key at console.groq.com. Pass it as a Bearer token in the Authorization header. The endpoint is OpenAI-compatible.
Pricing: Llama 3.1 8B Instant: $0.05/M input, $0.08/M output. Llama 3.3 70B Versatile: $0.59/M input, $0.79/M output. Llama 3.1 70B: $0.59/M input, $0.79/M output. Batch API: 50% off.
Endpoints:
POST /chat/completions Chat completions (OpenAI-compatible)
GET /models List available models and their context lengths
Sample request:
```bash
curl "https://api.groq.com/openai/v1/chat/completions" \
-H "Authorization: Bearer $GROQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"llama-3.3-70b-versatile","messages":[{"role":"user","content":"Explain quantum computing in one paragraph."}]}'
```
Sample response:
```json
{
"id": "chatcmpl-abc123",
"model": "llama-3.3-70b-versatile",
"choices": [{
"message": { "role": "assistant", "content": "Quantum computing harnesses..." },
"finish_reason": "stop"
}],
"usage": { "prompt_tokens": 18, "completion_tokens": 87, "total_tokens": 105 },
"x_groq": { "id": "req_abc", "usage": { "queue_time": 0.0002 } }
}
```
---
### HuggingFace Inference API
Provider: HuggingFace
Base URL: https://api-inference.huggingface.co/models
Docs: https://huggingface.co/docs/api-inference
Auth type: Bearer Token
Auth example: Authorization: Bearer hf_...
Has free tier: Yes
Starting at: Free tier available
Free quota: Rate-limited free inference on public models
Rate limit: Varies by model and plan (free tier is rate-limited)
Tags: open-source, transformers, nlp, computer-vision, audio, diffusion, bert, llama
Description: The HuggingFace Inference API gives serverless access to the entire HuggingFace Hub: 200,000+ models for text generation, text classification, summarization, translation, question answering, image generation, image classification, object detection, speech recognition, and audio synthesis. Models range from tiny to frontier-scale. The Inference Endpoints product offers dedicated deployment for production workloads.
Auth: Create a User Access Token at huggingface.co/settings/tokens (read scope is sufficient). Pass it as a Bearer token in the Authorization header.
Pricing: Free: serverless inference on public models (rate-limited). PRO: $9/mo. Dedicated Inference Endpoints from $0.06/hr. Enterprise: custom.
Endpoints:
POST /{model_id} Run any model with task-specific input/output
POST /openai/v1/chat/completions OpenAI-compatible chat completions (TGI models)
Sample request:
```bash
# Text generation with Llama 3
curl "https://api-inference.huggingface.co/models/meta-llama/Meta-Llama-3-8B-Instruct" \
-H "Authorization: Bearer $HF_TOKEN" \
-H "Content-Type: application/json" \
-d '{"inputs": "What is the capital of France?", "parameters": {"max_new_tokens": 50}}'
```
Sample response:
```json
[{
"generated_text": "What is the capital of France?
The capital of France is Paris."
}]
```
---
### Cohere API
Provider: Cohere
Base URL: https://api.cohere.com/v2
Docs: https://docs.cohere.com
Auth type: Bearer Token
Auth example: Authorization: Bearer YOUR_COHERE_API_KEY
Has free tier: Yes
Starting at: Pay per use
Free quota: Trial key with limited free usage
Rate limit: 100 API calls/min (trial) · Higher on production
Tags: rag, embeddings, rerank, enterprise, command-r, grounding, citations
Description: Cohere provides production-ready language AI for enterprise teams. Command R+ leads on RAG benchmarks, making it ideal for grounded enterprise search. The Embed v3 model produces high-quality text embeddings for semantic search and retrieval. The Rerank endpoint improves search accuracy by reordering candidate results. All models have built-in tool use (function calling) and citation support for RAG pipelines.
Auth: Create an API key at dashboard.cohere.com. Pass it as a Bearer token in the Authorization header.
Pricing: Command R+: $2.50/M in, $10/M out. Command R: $0.15/M in, $0.60/M out. Command R7B: $0.0375/M in, $0.15/M out. Embed: $0.10/M tokens. Rerank: $2/1k queries.
Endpoints:
POST /chat Chat with Command R / R+ with optional tool use and RAG
POST /embed Generate embeddings for semantic search and classification
POST /rerank Rerank search results by relevance to a query
POST /classify Classify text into predefined categories
Sample request:
```bash
curl "https://api.cohere.com/v2/chat" \
-H "Authorization: Bearer $COHERE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"command-r-plus","messages":[{"role":"user","content":"Summarize the benefits of RAG for enterprise AI."}]}'
```
Sample response:
```json
{
"id": "abc123",
"message": {
"role": "assistant",
"content": [{"type":"text","text":"RAG (Retrieval-Augmented Generation) benefits include..."}]
},
"finish_reason": "COMPLETE",
"usage": { "billed_units": { "input_tokens": 24, "output_tokens": 112 } }
}
```
---
### Together AI API
Provider: Together AI
Base URL: https://api.together.xyz/v1
Docs: https://docs.together.ai
Auth type: Bearer Token
Auth example: Authorization: Bearer YOUR_TOGETHER_API_KEY
Has free tier: No
Starting at: from $0.10/mo
Free quota: $1 free credit on signup
Rate limit: 60 requests/min (default) · Scales with plan
Tags: open-source, llama, deepseek, fine-tuning, serverless, openai-compatible, vision
Description: Together AI provides cloud infrastructure for running open-source AI models at scale. The API is fully OpenAI-compatible and supports 200+ models including Llama 3.1 405B, Qwen 2.5, Mistral, DeepSeek, Stable Diffusion, and more. Features include serverless inference (pay per token), dedicated GPU clusters, fine-tuning with LORA, vision models, and function calling. Popular for research, enterprise AI, and teams migrating from proprietary models.
Auth: Create an API key at api.together.ai. The endpoint is OpenAI-compatible — pass your key as a Bearer token in the Authorization header.
Pricing: Llama 3.1 8B: $0.18/M · $0.18/M. Llama 3.1 70B: $0.88/M · $0.88/M. Llama 4 Scout: available. DeepSeek R1: $1.25/M · $1.25/M. Image gen: $0.008 per image. No free tier; minimum $5 credit purchase.
Endpoints:
POST /chat/completions Chat completions (OpenAI-compatible)
POST /completions Text completions
POST /embeddings Generate text embeddings
POST /images/generations Image generation (Stable Diffusion, FLUX)
GET /models List all available models with pricing
POST /fine-tunes Start a fine-tuning job with LoRA
Sample request:
```bash
curl "https://api.together.xyz/v1/chat/completions" \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo","messages":[{"role":"user","content":"Write a Python function to parse JSON safely"}],"max_tokens":200}'
```
Sample response:
```json
{
"id": "890ab123",
"model": "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo",
"choices": [{
"message": { "role": "assistant", "content": "Here's a Python function to safely parse JSON:
```python
import json
def safe_json_parse(data):
try:
return json.loads(data)
except json.JSONDecodeError:
return None
```" },
"finish_reason": "stop"
}],
"usage": { "prompt_tokens": 20, "completion_tokens": 68 }
}
```
---
### ElevenLabs API Documentation
Provider: ElevenLabs API Documentation
Base URL: https://api.elevenlabs.io/
Docs: https://api.elevenlabs.io/
Auth type: API Key Header
Auth example: xi-api-key: YOUR_API_KEY
Has free tier: Yes
Starting at: Free tier available
Free quota: 10,000 characters / month
Rate limit: 2 concurrent requests (free); up to 10 (paid)
Tags: ai, voice, text-to-speech, speech synthesis, audio
Description: This is the documentation for the ElevenLabs API. You can use this API to use our service programmatically, this is done by using your xi-api-key.
You can view your xi-api-key using the 'Profile' tab on https://beta.elevenlabs.io. Our API is experimental so all endpoints are subject to change.
Auth: API key in the xi-api-key request header
Pricing: Free: 10k chars/mo. Starter $5/mo (30k chars). Creator $22/mo (100k chars). Pro $99/mo (500k chars). Scale $330/mo (2M chars).
Endpoints:
GET /v1/history Get Generated Items
POST /v1/history/delete Delete History Items
POST /v1/history/download Download History Items
DELETE /v1/history/{history_item_id} Delete History Item
GET /v1/history/{history_item_id}/audio Get Audio From History Item
POST /v1/text-to-speech/{voice_id} Text To Speech
POST /v1/text-to-speech/{voice_id}/stream Text To Speech
GET /v1/user Get User Info
Sample request:
```bash
curl -X GET 'https://api.elevenlabs.io//v1/history' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### PowerTools Developer
Provider: PowerTools Developer
Base URL: https://connect.apptigent.com/api/utilities
Docs: https://www.apptigent.com/help/
Auth type: API Key Header
Auth example: X-IBM-Client-Id: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: ai, apptigent
Description: Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech,
Auth: API key in the request header (X-IBM-Client-Id)
Pricing: Free with account. Developer productivity toolset API.
Endpoints:
POST /AddToCollection Collections - Add to collection
POST /CSVtoJSON Data - CSV to JSON
POST /CalculateAbsolute Math - Calculate Absolute
POST /CalculateAddition Math - Calculate Addition
POST /CalculateAverage Math - Calculate average
POST /CalculateCosine Math - Calculate Cosine
POST /CalculateDivision Math - Calculate Division
POST /CalculateLogarithm Math - Calculate Logarithm
Sample request:
```bash
curl -X GET 'https://connect.apptigent.com/api/utilities/AddToCollection' \
-H 'X-IBM-Client-Id: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### DigitalNZ API
Provider: DigitalNZ
Base URL: https://api.digitalnz.org
Docs: https://api.digitalnz.org
Auth type: API Key Header
Auth example: GET /endpoint?api_key=YOUR_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 10,000 req/day
Tags: ai, digitalnz
Description: OpenAPI specification of DigitalNZ's Record API.
For more information about the API see digitalnz.org/developers.
To learn more about the metadata/fields used in the API see the [Metadata Dictionary](https://docs.google.com/document/pub?id=1Z3I_ckQWjnQQ4SzpORb
Auth: API key as a query parameter (api_key)
Pricing: Free with API key. DigitalNZ New Zealand digital heritage collections.
Endpoints:
GET /records.{format} Run queries against DigitalNZ metadata search service.
GET /records/{record_id}.{format} View metadata associated with a single record.
GET /records/{record_id}/more_like_this.{format} The "More Like This" call returns similar records to the specified ID.
Sample request:
```bash
curl -X GET 'https://api.digitalnz.org/records.{format}' \
-H 'GET /endpoint?api_key=YOUR_KEY'
```
Sample response:
```json
{}
```
---
### Fire Financial Services Business API
Provider: Fire Financial Services Business
Base URL: https://api.fire.com/business
Docs: https://docs.fire.com
Auth type: Bearer Token
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: ai, fire
Description: The fire.com API allows you to deeply integrate Business Account features into your application or back-office systems.
The API provides read access to your profile, accounts and transactions, event-driven notifications of activity on the account and payment initiation via batches. Each feature has
Auth: Bearer token in the Authorization header
Pricing: Paid. Fire.com Irish/UK business banking API; pricing per transaction.
Endpoints:
GET /v1/accounts List all fire.com Accounts
POST /v1/accounts Add a new account
GET /v1/accounts/{ican} Retrieve the details of a fire.com Account
GET /v1/accounts/{ican}/transactions List transactions for an account (v1)
GET /v1/accounts/{ican}/transactions/filter Filtered list of transactions for an account (v1)
POST /v1/apps Create a new API Application
POST /v1/apps/accesstokens Authenticate with the API.
GET /v1/aspsps Get list of ASPSPs / Banks
Sample request:
```bash
curl -X GET 'https://api.fire.com/business/v1/accounts' \
-H 'Authorization: Bearer YOUR_TOKEN'
```
Sample response:
```json
{}
```
---
### goog.io | Unoffical Google Search API
Provider: goog.io | Unoffical Google Search
Base URL: https://api.goog.io
Docs: https://goog.io
Auth type: API Key Header
Auth example: apikey: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: ai, goog
Description: Intoduction
This is the OpenAPI V3 documentation for https://api.goog.io
An API to perform Google Searches. Extremely fast and accurate. Zero proxies. Clean USA IPs.
Simple to use API, but advance enough to support special parameters such as languages, country and geographic locality.
Googio i
Auth: API key in the request header (apikey)
Pricing: Free unofficial Google Search API. Third-party wrapper; no paid tiers.
Endpoints:
GET / Status
GET /v1/crawl/{query} Crawl
GET /v1/images/{query} Images
GET /v1/news/{query} News
GET /v1/search/{query} Search
POST /v1/serp/ SERP
Sample request:
```bash
curl -X GET 'https://api.goog.io/' \
-H 'apikey: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Image-Charts
Provider: Image-Charts
Base URL: https://image-charts.com/
Docs: https://image-charts.com/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: ai, image-charts
Description: Charts, simple as a URL. A safe and fast replacement for Google Image Charts
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /chart Image-Charts API
GET /chart.js/2.8.0 Chart.js as image API
Sample request:
```bash
curl -X GET 'https://image-charts.com//chart' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### LanguageTool API
Provider: LanguageTool
Base URL: https://api.languagetoolplus.com/v2
Docs: https://api.languagetoolplus.com/v2
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: ai, languagetool
Description: Check texts for style and grammar issues with LanguageTool. Please consider the following default limitations:
Hi, there!
Welcome to the Zapier Natural Language Actions API docs. You are currently viewing the root API.
The endpoints of this root API are static and useful for reference. To see the live playgr
Auth: API key in the request header (X-API-Key)
Pricing: Free with Zapier account (beta). Natural language Zap execution API.
Endpoints:
GET /api/v1/check/ Check
GET /api/v1/configuration-link/ Get Configuration Link
GET /api/v1/exposed/ List Exposed Actions
POST /api/v1/exposed/{exposed_app_action_id}/execute/ Execute App Action Endpoint
Sample request:
```bash
curl -X GET 'https://nla.zapier.com/api/v1/check/' \
-H 'X-API-Key: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### IPstack API
Provider: IPstack
Base URL: https://ipstack.com
Docs: https://ipstack.com/?utm_source=Github&utm_medium=Referral&utm_campaign=Public-apis-repo-Best-sellers
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 100 req/month (free) · Scales with plan
Tags: maps
Description: Locate and identify website visitors by IP address
Auth: See documentation for auth details
Pricing: Free: 100 requests/month (no HTTPS). Basic $9.99/mo (10K req). Professional $49.99/mo (50K req). Professional Plus $99.99/mo (250K req, security data).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ipstack.com'
```
Sample response:
```json
{}
```
---
### ipapi.com API
Provider: ipapi.com
Base URL: https://ipapi.com
Docs: https://ipapi.com/?utm_source=Github&utm_medium=Referral&utm_campaign=Public-apis-repo-Best-sellers
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,000 req/day (free, unauthenticated)
Tags: maps
Description: Real-time Geolocation & Reverse IP Lookup REST API
Auth: See documentation for auth details
Pricing: IP geolocation. Free: 1,000 lookups/day (no key needed; HTTP only). Paid from $10/mo: HTTPS, bulk lookup, higher limits. Business $149/mo (750K/day).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ipapi.com'
```
Sample response:
```json
{}
```
---
### Actinia Grass GIS API
Provider: Actinia Grass GIS
Base URL: https://actinia.mundialis.de
Docs: https://actinia.mundialis.de/api_docs/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on deployment
Tags: maps
Description: Actinia is an open source REST API for geographical data that uses GRASS GIS
Auth: See documentation for auth details
Pricing: Free and open-source. GRASS GIS geospatial REST API; self-hosted.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://actinia.mundialis.de'
```
Sample response:
```json
{}
```
---
### adresse.data.gouv.fr API
Provider: adresse.data.gouv.fr
Base URL: https://adresse.data.gouv.fr
Docs: https://adresse.data.gouv.fr
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Address database of France, geocoding and reverse
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://adresse.data.gouv.fr'
```
Sample response:
```json
{}
```
---
### Airtel IP API
Provider: Airtel IP
Base URL: https://sys.airtel.lv
Docs: https://sys.airtel.lv/ip2country/1.1.1.1/?full=true
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: IP Geolocation API. Collecting data from multiple sources
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://sys.airtel.lv'
```
Sample response:
```json
{}
```
---
### bng2latlong API
Provider: bng2latlong
Base URL: https://www.getthedata.com
Docs: https://www.getthedata.com/bng2latlong
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Convert British OSGB36 easting and northing (British National Grid) to WGS84 latitude and longitude
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.getthedata.com'
```
Sample response:
```json
{}
```
---
### CitySDK API
Provider: CitySDK
Base URL: http://www.citysdk.eu
Docs: http://www.citysdk.eu/citysdk-toolkit/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Open APIs for select European cities
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://www.citysdk.eu'
```
Sample response:
```json
{}
```
---
### Country API
Provider: Country
Base URL: http://country.is
Docs: http://country.is/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Get your visitor's country from their IP
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://country.is'
```
Sample response:
```json
{}
```
---
### CountryStateCity API
Provider: CountryStateCity
Base URL: https://countrystatecity.in
Docs: https://countrystatecity.in/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Reasonable use enforced
Tags: maps
Description: World countries, states, regions, provinces, cities & towns in JSON, SQL, XML, YAML, & CSV format
Auth: See documentation for auth details
Pricing: Free — Country, State, City data API is free with API key. No paid tiers. Provides geographic data for countries, states, and cities worldwide.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://countrystatecity.in'
```
Sample response:
```json
{}
```
---
### Geoapify API
Provider: Geoapify
Base URL: https://www.geoapify.com
Docs: https://www.geoapify.com/api/geocoding-api/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 3K req/day (free)
Tags: maps
Description: Forward and reverse geocoding, address autocomplete
Auth: See documentation for auth details
Pricing: Free: 3,000 requests/day (geocoding, routing, maps). Moderate $49/mo (100K req/day). Advanced $149/mo (500K req/day). Premium $499/mo. Enterprise custom.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.geoapify.com'
```
Sample response:
```json
{}
```
---
### Geocod.io API
Provider: Geocod.io
Base URL: https://www.geocod.io
Docs: https://www.geocod.io/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1K req/min
Tags: maps
Description: Address geocoding / reverse geocoding in bulk
Auth: See documentation for auth details
Pricing: Free: 2,500 lookups/day (US + Canada). Pay-as-you-go: $0.50/1K lookups (1K-99K). Volume discounts at higher tiers. No monthly fee needed.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.geocod.io'
```
Sample response:
```json
{}
```
---
### Geocode.xyz API
Provider: Geocode.xyz
Base URL: https://geocode.xyz
Docs: https://geocode.xyz/api
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://geocode.xyz'
```
Sample response:
```json
{}
```
---
### Geocodify.com API
Provider: Geocodify.com
Base URL: https://geocodify.com
Docs: https://geocodify.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1K req/min
Tags: maps
Description: Worldwide geocoding, geoparsing and autocomplete for addresses
Auth: See documentation for auth details
Pricing: Geocoding API. Free: 10,000 requests/month. Startup $9/mo (100K req/mo). Growth $29/mo (500K req/mo). Scale $99/mo (2M req/mo).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://geocodify.com'
```
Sample response:
```json
{}
```
---
### GeographQL API
Provider: GeographQL
Base URL: https://geographql.netlify.app
Docs: https://geographql.netlify.app
Auth type: Bearer Token
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 100 GB bandwidth / month
Rate limit: 500 requests/min per API token
Tags: maps, entertainment, developer, deployment, hosting, jamstack, ci/cd
Description: A Country, State, and City GraphQL API
Auth: Personal Access Token as a Bearer token in the Authorization header
Pricing: Hobby: free. Pro: $19/mo (400GB bandwidth). Business: $99/mo. Enterprise: custom pricing.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://geographql.netlify.app'
```
Sample response:
```json
{}
```
---
### GeoJS API
Provider: GeoJS
Base URL: https://www.geojs.io
Docs: https://www.geojs.io/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: IP geolocation with ChatOps integration
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.geojs.io'
```
Sample response:
```json
{}
```
---
### Geokeo API
Provider: Geokeo
Base URL: https://geokeo.com
Docs: https://geokeo.com
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Geokeo geocoding service- with 2500 free api requests daily
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://geokeo.com'
```
Sample response:
```json
{}
```
---
### geoPlugin API
Provider: geoPlugin
Base URL: https://www.geoplugin.com
Docs: https://www.geoplugin.com
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: IP geolocation and currency conversion
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.geoplugin.com'
```
Sample response:
```json
{}
```
---
### HelloSalut API
Provider: HelloSalut
Base URL: https://fourtonfish.com
Docs: https://fourtonfish.com/project/hellosalut-api/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Get hello translation following user language
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://fourtonfish.com'
```
Sample response:
```json
{}
```
---
### Hong Kong GeoData Store API
Provider: Hong Kong GeoData Store
Base URL: https://geodata.gov.hk
Docs: https://geodata.gov.hk/gs/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: API for accessing geo-data of Hong Kong
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://geodata.gov.hk'
```
Sample response:
```json
{}
```
---
### IBGE API
Provider: IBGE
Base URL: https://servicodados.ibge.gov.br
Docs: https://servicodados.ibge.gov.br/api/docs/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Aggregate services of IBGE (Brazilian Institute of Geography and Statistics)
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://servicodados.ibge.gov.br'
```
Sample response:
```json
{}
```
---
### ipapi.co API
Provider: ipapi.co
Base URL: https://ipapi.co
Docs: https://ipapi.co/api/#introduction
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Find IP address location information
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ipapi.co'
```
Sample response:
```json
{}
```
---
### IPGEO API
Provider: IPGEO
Base URL: https://api.techniknews.net
Docs: https://api.techniknews.net/ipgeo/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Unlimited free IP Address API with useful information
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://api.techniknews.net'
```
Sample response:
```json
{}
```
---
### ipgeolocation API
Provider: ipgeolocation
Base URL: https://ipgeolocation.io
Docs: https://ipgeolocation.io/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,000 req/day (free)
Tags: maps
Description: IP Geolocation AP with free plan 30k requests per month
Auth: See documentation for auth details
Pricing: IP geolocation API. Free: 1,000 requests/day. Basic $14.99/mo (10K/day). Standard $24.99/mo (30K/day). Advanced $34.99/mo (75K/day). Business $79.99/mo.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ipgeolocation.io'
```
Sample response:
```json
{}
```
---
### IPInfoDB API
Provider: IPInfoDB
Base URL: https://www.ipinfodb.com
Docs: https://www.ipinfodb.com/api
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_IPINFO_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 50,000 requests / month
Rate limit: 50,000 requests/month free; burst up to 65,000/mo
Tags: developer, maps, ip, geolocation, location, network
Description: Free Geolocation tools and APIs for country, region, city and time zone lookup by IP address
Auth: API token as a query parameter or in the Authorization header
Pricing: Free: 50k req/mo. Basic: $99/mo (150k req/mo). Standard: $249/mo (500k req/mo). Business: $499/mo (1.5M req/mo).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.ipinfodb.com'
```
Sample response:
```json
{}
```
---
### keycdn IP Location Finder API
Provider: keycdn IP Location Finder
Base URL: https://tools.keycdn.com
Docs: https://tools.keycdn.com/geo
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1K req/hour (free with CDN account)
Tags: maps
Description: Get the IP geolocation data through the simple REST API. All the responses are JSON encoded
Auth: See documentation for auth details
Pricing: KeyCDN IP location API. Free with KeyCDN account. IP geolocation data for CDN and network routing purposes. KeyCDN CDN from $0.04/GB.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://tools.keycdn.com'
```
Sample response:
```json
{}
```
---
### LocationIQ API
Provider: LocationIQ
Base URL: https://locationiq.org
Docs: https://locationiq.org/docs/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 2 req/s (free) · Up to 500 req/s (paid)
Tags: maps
Description: Provides forward/reverse geocoding and batch geocoding
Auth: See documentation for auth details
Pricing: Free: 5,000 requests/day (2 req/s). Paygo $0.50/1K requests. Petite $49/mo (10K req/day, 15 req/s). Standard $149/mo (50K req/day). Plus $399/mo.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://locationiq.org'
```
Sample response:
```json
{}
```
---
### Longdo Map API
Provider: Longdo Map
Base URL: https://map.longdo.com
Docs: https://map.longdo.com/docs/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by plan
Tags: maps
Description: Interactive map with detailed places and information portal in Thailand
Auth: See documentation for auth details
Pricing: Thailand mapping API (Longdo Map). Free tier available for non-commercial use. Commercial licensing from Longdo/MMIS. Thailand-focused map data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://map.longdo.com'
```
Sample response:
```json
{}
```
---
### MapQuest API
Provider: MapQuest
Base URL: https://developer.mapquest.com
Docs: https://developer.mapquest.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 500 req/s (paid plans)
Tags: maps
Description: To access tools and resources to map the world
Auth: See documentation for auth details
Pricing: Free: 15,000 transactions/month. Advanced $49/mo (up to 50K transactions). On Demand: $0.005/transaction above free quota. Enterprise custom.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.mapquest.com'
```
Sample response:
```json
{}
```
---
### Nominatim API
Provider: Nominatim
Base URL: https://nominatim.org
Docs: https://nominatim.org/release-docs/latest/api/Overview/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Provides worldwide forward / reverse geocoding
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://nominatim.org'
```
Sample response:
```json
{}
```
---
### One Map, Singapore API
Provider: One Map, Singapore
Base URL: https://www.onemap.gov.sg
Docs: https://www.onemap.gov.sg/docs/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 250 req/min (free with token)
Tags: maps
Description: Singapore Land Authority REST API services for Singapore addresses
Auth: See documentation for auth details
Pricing: Official Singapore government mapping API. Free for developers and businesses with a Singapore government-approved API token. Singapore-focused.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.onemap.gov.sg'
```
Sample response:
```json
{}
```
---
### OnWater API
Provider: OnWater
Base URL: https://onwater.io
Docs: https://onwater.io/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Determine if a lat/lon is on water or land
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://onwater.io'
```
Sample response:
```json
{}
```
---
### Open Topo Data API
Provider: Open Topo Data
Base URL: https://www.opentopodata.org
Docs: https://www.opentopodata.org
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Elevation and ocean depth for a latitude and longitude
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.opentopodata.org'
```
Sample response:
```json
{}
```
---
### openrouteservice.org API
Provider: openrouteservice.org
Base URL: https://openrouteservice.org
Docs: https://openrouteservice.org/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 40 req/min (free) · Scales with plan
Tags: maps
Description: Directions, POIs, isochrones, geocoding (+reverse), elevation, and more
Auth: See documentation for auth details
Pricing: Free: 2,000 requests/day (routing, geocoding, isochrones). Hobbyist $0/mo (same). Standard $40/mo (10K req/day). Advanced $100/mo (25K/day).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://openrouteservice.org'
```
Sample response:
```json
{}
```
---
### Pinball Map API
Provider: Pinball Map
Base URL: https://pinballmap.com
Docs: https://pinballmap.com/api/v1/docs
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: A crowdsourced map of public pinball machines
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://pinballmap.com'
```
Sample response:
```json
{}
```
---
### positionstack API
Provider: positionstack
Base URL: https://positionstack.com
Docs: https://positionstack.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1 req/s (free) · Up to 200 req/s (paid)
Tags: maps
Description: Forward & Reverse Batch Geocoding REST API
Auth: See documentation for auth details
Pricing: Free: 25,000 requests/month (HTTP only, 1 req/s). Basic $9.99/mo (10K req/mo, HTTPS, 30 req/s). Standard $49.99/mo (100K req). Pro $99.99/mo (500K req).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://positionstack.com'
```
Sample response:
```json
{}
```
---
### Postcodes.io API
Provider: Postcodes.io
Base URL: https://postcodes.io
Docs: https://postcodes.io
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Postcode lookup & Geolocation for the UK
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://postcodes.io'
```
Sample response:
```json
{}
```
---
### Uebermaps API
Provider: Uebermaps
Base URL: https://uebermaps.com
Docs: https://uebermaps.com/api/v2
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 500 req/month (free)
Tags: maps
Description: Discover and share maps with friends
Auth: See documentation for auth details
Pricing: Maps and location data API. Free: 500 requests/month. Hobbyist $4.99/mo. Developer $9.99/mo. Business $49.99/mo. Enterprise custom.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://uebermaps.com'
```
Sample response:
```json
{}
```
---
### Utah AGRC API
Provider: Utah AGRC
Base URL: https://api.mapserv.utah.gov
Docs: https://api.mapserv.utah.gov
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Utah Web API for geocoding Utah addresses
Auth: See documentation for auth details
Pricing: Free and open. Utah Automated Geographic Reference Center (AGRC) geospatial data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://api.mapserv.utah.gov'
```
Sample response:
```json
{}
```
---
### What3Words API
Provider: What3Words
Base URL: https://what3words.com
Docs: https://what3words.com
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 5 req/s (free tier)
Tags: maps
Description: Three words as rememberable and unique coordinates worldwide
Auth: See documentation for auth details
Pricing: Free for development and small non-commercial use. Business licensing required for commercial use at volume. Pricing based on usage (conversions/month). Contact sales.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://what3words.com'
```
Sample response:
```json
{}
```
---
### Yandex.Maps Geocoder API
Provider: Yandex.Maps Geocoder
Base URL: https://yandex.com
Docs: https://yandex.com/dev/maps/geocoder
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,000 req/day (free non-commercial)
Tags: maps
Description: Use geocoding to get an object's coordinates from its address
Auth: See documentation for auth details
Pricing: Yandex Geocoder API. Free: 1,000 req/day for non-commercial use. Commercial use requires paid plan from ₽1,500/mo. Russia/CIS coverage is strongest.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://yandex.com'
```
Sample response:
```json
{}
```
---
### ZipCodeAPI API
Provider: ZipCodeAPI
Base URL: https://www.zipcodeapi.com
Docs: https://www.zipcodeapi.com
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 50 req/hour (free)
Tags: maps
Description: US zip code distance, radius and location API
Auth: See documentation for auth details
Pricing: ZipCodeAPI geocoding (US ZIP codes). Free: 50 requests/hour. Basic $19.99/mo (2,000 req/hr). Professional $49.99/mo (unlimited). API key required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.zipcodeapi.com'
```
Sample response:
```json
{}
```
---
### Ziptastic API
Provider: Ziptastic
Base URL: https://ziptasticapi.com
Docs: https://ziptasticapi.com/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Get the country, state, and city of any US zip-code
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ziptasticapi.com'
```
Sample response:
```json
{}
```
---
### Aftership API
Provider: Aftership
Base URL: https://developers.aftership.com
Docs: https://developers.aftership.com/reference/quick-start
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 10 req/s (Essentials)
Tags: maps
Description: API to update, manage and track shipment efficiently
Auth: See documentation for auth details
Pricing: Tracking API: min $99/mo (Essentials). No free API tier since 2024. Essentials $99/mo: 2K shipments/mo. Pro $199/mo. Enterprise custom.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developers.aftership.com'
```
Sample response:
```json
{}
```
---
### Correios API
Provider: Correios
Base URL: https://cws.correios.com.br
Docs: https://cws.correios.com.br/ajuda
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Integration to provide information and prepare shipments using Correio's services
Auth: See documentation for auth details
Pricing: Free with Brazilian postal service account. CEP/postal code lookup API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://cws.correios.com.br'
```
Sample response:
```json
{}
```
---
### Pixela API
Provider: Pixela
Base URL: https://pixe.la
Docs: https://pixe.la
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: API for recording and tracking habits or effort, routines
Auth: See documentation for auth details
Pricing: Free and open. Graph/pixel-based habit tracker API; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://pixe.la'
```
Sample response:
```json
{}
```
---
### PostalPinCode API
Provider: PostalPinCode
Base URL: http://www.postalpincode.in
Docs: http://www.postalpincode.in/Api-Details
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: API for getting Pincode details in India
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://www.postalpincode.in'
```
Sample response:
```json
{}
```
---
### WeCanTrack API
Provider: WeCanTrack
Base URL: https://docs.wecantrack.com
Docs: https://docs.wecantrack.com
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on plan
Tags: maps
Description: Automatically place subids in affiliate links to attribute affiliate conversions to click data
Auth: See documentation for auth details
Pricing: Paid affiliate tracking API. Plans from €79/mo based on clicks and conversions tracked.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://docs.wecantrack.com'
```
Sample response:
```json
{}
```
---
### WhatPulse API
Provider: WhatPulse
Base URL: https://developer.whatpulse.org
Docs: https://developer.whatpulse.org/#web-api
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Small application that measures your keyboard/mouse usage
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.whatpulse.org'
```
Sample response:
```json
{}
```
---
### ADS-B Exchange API
Provider: ADS-B Exchange
Base URL: https://www.adsbexchange.com
Docs: https://www.adsbexchange.com/data/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Access real-time and historical data of any and all airborne aircraft
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.adsbexchange.com'
```
Sample response:
```json
{}
```
---
### airportsapi API
Provider: airportsapi
Base URL: https://airport-web.appspot.com
Docs: https://airport-web.appspot.com/api/docs/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Get name and website-URL for airports by ICAO code
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://airport-web.appspot.com'
```
Sample response:
```json
{}
```
---
### AZ511 API
Provider: AZ511
Base URL: https://www.az511.com
Docs: https://www.az511.com/developers/doc
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Access traffic data from the ADOT API
Auth: See documentation for auth details
Pricing: Free and open. Arizona Department of Transportation 511 traveler information API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.az511.com'
```
Sample response:
```json
{}
```
---
### BC Ferries API
Provider: BC Ferries
Base URL: https://www.bcferriesapi.ca
Docs: https://www.bcferriesapi.ca
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Sailing times and capacities for BC Ferries
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.bcferriesapi.ca'
```
Sample response:
```json
{}
```
---
### BIC-Boxtech API
Provider: BIC-Boxtech
Base URL: https://docs.bic-boxtech.org
Docs: https://docs.bic-boxtech.org/
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 10 GB storage / forever
Rate limit: 4,000 API calls/min (authenticated)
Tags: communication, maps, entertainment, storage, cloud storage, files, enterprise, collaboration
Description: Container technical detail for the global container fleet
Auth: OAuth 2.0 or JWT (Server Authentication) for machine-to-machine
Pricing: Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://docs.bic-boxtech.org'
```
Sample response:
```json
{}
```
---
### Boston MBTA Transit API
Provider: Boston MBTA Transit
Base URL: https://www.mbta.com
Docs: https://www.mbta.com/developers/v3-api
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not enforced
Tags: maps
Description: Stations and predicted arrivals for MBTA
Auth: See documentation for auth details
Pricing: Free and open. Massachusetts Bay Transportation Authority real-time transit data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.mbta.com'
```
Sample response:
```json
{}
```
---
### Grab API
Provider: Grab
Base URL: https://developer.grab.com
Docs: https://developer.grab.com/docs/
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by partner tier
Tags: maps
Description: Track deliveries, ride fares, payments and loyalty points
Auth: See documentation for auth details
Pricing: Southeast Asian super-app platform (ride-hailing, food, delivery). Developer APIs for GrabPay, maps. Partner program required for production access.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.grab.com'
```
Sample response:
```json
{}
```
---
### GraphHopper API
Provider: GraphHopper
Base URL: https://docs.graphhopper.com
Docs: https://docs.graphhopper.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 500 req/day (free) · Up to 200K/day (paid)
Tags: maps
Description: A-to-B routing with turn-by-turn instructions
Auth: See documentation for auth details
Pricing: Free: 500 requests/day (routing, isochrone). Standard €29/mo (10K req/day). Professional €99/mo (50K req/day). Premium €499/mo. Enterprise custom. Self-hostable.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://docs.graphhopper.com'
```
Sample response:
```json
{}
```
---
### Icelandic APIs API
Provider: Icelandic APIs
Base URL: http://docs.apis.is
Docs: http://docs.apis.is/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Open APIs that deliver services in or regarding Iceland
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://docs.apis.is'
```
Sample response:
```json
{}
```
---
### Navitia API
Provider: Navitia
Base URL: https://doc.navitia.io
Docs: https://doc.navitia.io/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 2,000 req/day (free)
Tags: maps
Description: The open API for building cool stuff with transport data
Auth: See documentation for auth details
Pricing: Free: 2,000 req/day (open data). Paid plans for higher volume and private data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://doc.navitia.io'
```
Sample response:
```json
{}
```
---
### Open Charge Map API
Provider: Open Charge Map
Base URL: https://openchargemap.org
Docs: https://openchargemap.org/site/develop/api
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Global public registry of electric vehicle charging locations
Auth: See documentation for auth details
Pricing: Free and open. Electric vehicle charging network data; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://openchargemap.org'
```
Sample response:
```json
{}
```
---
### OpenSky Network API
Provider: OpenSky Network
Base URL: https://opensky-network.org
Docs: https://opensky-network.org/apidoc/index.html
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Free real-time ADS-B aviation data
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://opensky-network.org'
```
Sample response:
```json
{}
```
---
### REFUGE Restrooms API
Provider: REFUGE Restrooms
Base URL: https://www.refugerestrooms.org
Docs: https://www.refugerestrooms.org/api/docs/#!/restrooms
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Provides safe restroom access for transgender, intersex and gender nonconforming individuals
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.refugerestrooms.org'
```
Sample response:
```json
{}
```
---
### Tankerkoenig API
Provider: Tankerkoenig
Base URL: https://creativecommons.tankerkoenig.de
Docs: https://creativecommons.tankerkoenig.de/swagger/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: German realtime gas/diesel prices
Auth: See documentation for auth details
Pricing: Free and open. German petrol station pricing database API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://creativecommons.tankerkoenig.de'
```
Sample response:
```json
{}
```
---
### Transport for Belgium API
Provider: Transport for Belgium
Base URL: https://docs.irail.be
Docs: https://docs.irail.be/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: The iRail API is a third-party API for Belgian public transport by train
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://docs.irail.be'
```
Sample response:
```json
{}
```
---
### Transport for Bordeaux, France API
Provider: Transport for Bordeaux, France
Base URL: https://opendata.bordeaux-metropole.fr
Docs: https://opendata.bordeaux-metropole.fr/explore/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Bordeaux Métropole public transport and more (France)
Auth: See documentation for auth details
Pricing: Free and open. Bordeaux Métropole open transport data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://opendata.bordeaux-metropole.fr'
```
Sample response:
```json
{}
```
---
### Transport for Hessen, Germany API
Provider: Transport for Hessen, Germany
Base URL: https://opendata.rmv.de
Docs: https://opendata.rmv.de/site/start.html
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: RMV API (Public Transport in Hessen)
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://opendata.rmv.de'
```
Sample response:
```json
{}
```
---
### Transport for Lisbon, Portugal API
Provider: Transport for Lisbon, Portugal
Base URL: https://emel.city-platform.com
Docs: https://emel.city-platform.com/opendata/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Data about buses routes, parking and traffic
Auth: See documentation for auth details
Pricing: Free and open. Lisbon metropolitan transport API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://emel.city-platform.com'
```
Sample response:
```json
{}
```
---
### Transport for Los Angeles, US API
Provider: Transport for Los Angeles, US
Base URL: https://developer.metro.net
Docs: https://developer.metro.net/api/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Data about positions of Metro vehicles in real time and travel their routes
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.metro.net'
```
Sample response:
```json
{}
```
---
### Transport for Norway API
Provider: Transport for Norway
Base URL: https://developer.entur.org
Docs: https://developer.entur.org/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Transport APIs and dataset for Norway
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.entur.org'
```
Sample response:
```json
{}
```
---
### Transport for Switzerland API
Provider: Transport for Switzerland
Base URL: https://opentransportdata.swiss
Docs: https://opentransportdata.swiss/en/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Official Swiss Public Transport Open Data
Auth: See documentation for auth details
Pricing: Free and open. Swiss Federal Railways open transport data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://opentransportdata.swiss'
```
Sample response:
```json
{}
```
---
### Transport for UK API
Provider: Transport for UK
Base URL: https://developer.transportapi.com
Docs: https://developer.transportapi.com
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 500 req/min with API key
Tags: maps
Description: Transport API and dataset for UK
Auth: See documentation for auth details
Pricing: Free and open. Transport for London Unified API; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.transportapi.com'
```
Sample response:
```json
{}
```
---
### transport.rest API
Provider: transport.rest
Base URL: https://transport.rest
Docs: https://transport.rest
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Community maintained, developer-friendly public transport API
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://transport.rest'
```
Sample response:
```json
{}
```
---
### Tripadvisor API
Provider: Tripadvisor
Base URL: https://developer-tripadvisor.com
Docs: https://developer-tripadvisor.com/home/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 50 req/s (partner)
Tags: maps
Description: Rating content for a hotel, restaurant, attraction or destination
Auth: See documentation for auth details
Pricing: Content API for partners. Access to location data, reviews, and media. Requires TripAdvisor partnership application. Free tier for limited content access.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer-tripadvisor.com'
```
Sample response:
```json
{}
```
---
### Uber API
Provider: Uber
Base URL: https://developer.uber.com
Docs: https://developer.uber.com/products
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Sandbox: 1K req/hour · Production: varies by product
Tags: maps
Description: Uber ride requests and price estimation
Auth: See documentation for auth details
Pricing: Free for developer sandbox. Production access available for ride-hailing integrations. Pricing based on ride transactions. API key required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.uber.com'
```
Sample response:
```json
{}
```
---
### Brazilian Vehicles and Prices API
Provider: Brazilian Vehicles and Prices
Base URL: https://deividfortuna.github.io
Docs: https://deividfortuna.github.io/fipe/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://deividfortuna.github.io'
```
Sample response:
```json
{}
```
---
### Helipaddy sites API
Provider: Helipaddy sites
Base URL: https://helipaddy.com
Docs: https://helipaddy.com/api/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on license
Tags: maps
Description: Helicopter and passenger drone landing site directory, Helipaddy data and much more
Auth: See documentation for auth details
Pricing: Paid aviation API. Helicopter landing site data requires commercial licensing.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://helipaddy.com'
```
Sample response:
```json
{}
```
---
### Kelley Blue Book API
Provider: Kelley Blue Book
Base URL: http://developer.kbb.com
Docs: http://developer.kbb.com/#!/data/1-Default
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on license
Tags: maps
Description: Vehicle info, pricing, configuration, plus much more
Auth: See documentation for auth details
Pricing: Paid partner API. Automotive valuation data requires commercial licensing agreement.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://developer.kbb.com'
```
Sample response:
```json
{}
```
---
### Mercedes-Benz API
Provider: Mercedes-Benz
Base URL: https://developer.mercedes-benz.com
Docs: https://developer.mercedes-benz.com/apis
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Telematics data, remotely access vehicle functions, car configurator, locate service dealers
Auth: See documentation for auth details
Pricing: Free with developer account on Mercedes developer portal. Vehicle and connected car data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.mercedes-benz.com'
```
Sample response:
```json
{}
```
---
### NHTSA API
Provider: NHTSA
Base URL: https://vpic.nhtsa.dot.gov
Docs: https://vpic.nhtsa.dot.gov/api/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: NHTSA Product Information Catalog and Vehicle Listing
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://vpic.nhtsa.dot.gov'
```
Sample response:
```json
{}
```
---
### Smartcar API
Provider: Smartcar
Base URL: https://smartcar.com
Docs: https://smartcar.com/docs/
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 60 req/min (development)
Tags: maps
Description: Lock and unlock vehicles and get data like odometer reading and location. Works on most new cars
Auth: See documentation for auth details
Pricing: Vehicle data API. Free: 1 vehicle in development. Production pricing from $0.05/vehicle/month. Starter $99/mo (100 vehicles). Growth $299/mo. Enterprise custom.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://smartcar.com'
```
Sample response:
```json
{}
```
---
### GeoApi API
Provider: GeoApi
Base URL: https://api.gouv.fr
Docs: https://api.gouv.fr/api/geoapi.html
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Simplifiez le partage et la circulation des données administratives grace à api.gouv, le site qui référence toutes les API du service public.
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://api.gouv.fr'
```
Sample response:
```json
{}
```
---
### IP 2 Country API
Provider: IP 2 Country
Base URL: https://ip2country.info
Docs: https://ip2country.info
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: IP 2 Country / IP Geolocation JSON API
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ip2country.info'
```
Sample response:
```json
{}
```
---
### IP Vigilante API
Provider: IP Vigilante
Base URL: https://www.ipvigilante.com
Docs: https://www.ipvigilante.com/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Free IP Geolocation API
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.ipvigilante.com'
```
Sample response:
```json
{}
```
---
### Postali API
Provider: Postali
Base URL: https://postali.app
Docs: https://postali.app/api
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Mexico Zip Codes API
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://postali.app'
```
Sample response:
```json
{}
```
---
### ViaCep API
Provider: ViaCep
Base URL: https://viacep.com.br
Docs: https://viacep.com.br
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Webservice gratuito para consulta de endereço via CEP, suporta Ajax e retorno nos formatos JSON ou XML.
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://viacep.com.br'
```
Sample response:
```json
{}
```
---
### Amadeus for Developers API
Provider: Amadeus for Developers
Base URL: https://api.amadeus.com/v2
Docs: https://developers.amadeus.com/self-service
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: Free test environment with synthetic data
Rate limit: 100 calls/sec (production); varies by API
Tags: maps, travel, flights, hotels, booking, entertainment
Description: Travel Search - Limited usage
Auth: OAuth 2.0 Client Credentials — exchange API key + secret for access token
Pricing: Test environment: free with synthetic data. Production: pay-as-you-go per API call. Flight search: ~$0.005/call. Volume discounts available.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developers.amadeus.com'
```
Sample response:
```json
{}
```
---
### Izi API
Provider: Izi
Base URL: http://api-docs.izi.travel
Docs: http://api-docs.izi.travel/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Audio guide for travellers
Auth: See documentation for auth details
Pricing: Free for non-commercial audio tour content. Paid for commercial and tourism apps.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://api-docs.izi.travel'
```
Sample response:
```json
{}
```
---
### Sabre for Developers API
Provider: Sabre for Developers
Base URL: https://developer.sabre.com
Docs: https://developer.sabre.com/guides/travel-agency/quickstart/getting-started-in-travel
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on contract
Tags: maps
Description: Access powerful travel APIs, SDKs, and tools to build airline, hotel, and agency solutions. Get integration guides, documentation, and expert support for seamless development.
Auth: See documentation for auth details
Pricing: Paid B2B travel API. Pricing by custom contract for airlines, hotels, and car rental data.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.sabre.com'
```
Sample response:
```json
{}
```
---
### Transport for Budapest, Hungary API
Provider: Transport for Budapest, Hungary
Base URL: https://bkkfutar.docs.apiary.io
Docs: https://bkkfutar.docs.apiary.io
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Budapest public transport API
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://bkkfutar.docs.apiary.io'
```
Sample response:
```json
{}
```
---
### Transport for Finland API
Provider: Transport for Finland
Base URL: https://digitransit.fi
Docs: https://digitransit.fi/en/developers/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Uuden ajan reittioppaan käyttöliittymät ja rajapinnat.
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://digitransit.fi'
```
Sample response:
```json
{}
```
---
### Transport for Manchester, England API
Provider: Transport for Manchester, England
Base URL: https://developer.tfgm.com
Docs: https://developer.tfgm.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: TfGM transport network data
Auth: See documentation for auth details
Pricing: Free and open. Transport for Greater Manchester open data API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.tfgm.com'
```
Sample response:
```json
{}
```
---
### Transport for Spain API
Provider: Transport for Spain
Base URL: https://data.renfe.com
Docs: https://data.renfe.com/api/1/util/snippet/api_info.html?resource_id=a2368cff-1562-4dde-8466-9635ea3a572a
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Free tier available
Free quota: Completely free
Rate limit: See documentation
Tags: maps
Description: Public trains of Spain
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://data.renfe.com'
```
Sample response:
```json
{}
```
---
### Transport for Sweden API
Provider: Transport for Sweden
Base URL: https://www.trafiklab.se
Docs: https://www.trafiklab.se/api
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by dataset; generally 10,000 req/min
Tags: maps
Description: Public Transport consumer
Auth: See documentation for auth details
Pricing: Free and open. Trafiklab Swedish public transport APIs.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.trafiklab.se'
```
Sample response:
```json
{}
```
---
### Amazon Maps API v2 API
Provider: Amazon Maps API v2
Base URL: https://developer.amazon.com
Docs: https://developer.amazon.com/maps
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Amazon Maps API v2 API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Pay-as-you-go via Amazon Location Service. Maps: $0.50/1,000 tiles. Geocoding: $0.50/1,000 req.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.amazon.com'
```
Sample response:
```json
{}
```
---
### HERE Maps API API
Provider: HERE Maps API
Base URL: https://developer.here.com
Docs: https://developer.here.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 250,000 req/month (free)
Tags: maps
Description: HERE Maps API API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Freemium. Free: 250,000 req/month. Paid from $9/mo (500K req). REST APIs for routing, geocoding, maps.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.here.com'
```
Sample response:
```json
{}
```
---
### Open Street Map API
Provider: Open Street Map
Base URL: http://wiki.openstreetmap.org
Docs: http://wiki.openstreetmap.org/wiki/API
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1 req/s (Nominatim public policy)
Tags: maps
Description: Open Street Map API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Free — OpenStreetMap data is free (ODbL license). The Nominatim geocoding API is free but has a 1 req/s usage policy. Run your own instance for higher volume.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://wiki.openstreetmap.org'
```
Sample response:
```json
{}
```
---
### Smappee API
Provider: Smappee
Base URL: https://smappee.atlassian.net
Docs: https://smappee.atlassian.net/wiki/display/DEVAPI/SmappeeDevAPI+Home
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Smappee API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Free with Smappee device/account. Energy monitoring API for Smappee hardware owners.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://smappee.atlassian.net'
```
Sample response:
```json
{}
```
---
### Amap API
Provider: Amap
Base URL: http://lbs.amap.com
Docs: http://lbs.amap.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 5,000 req/day (free)
Tags: maps
Description: Amap API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Free tier: 5,000 req/day (most services). Paid for commercial use. Gaode/Amap Chinese maps.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://lbs.amap.com'
```
Sample response:
```json
{}
```
---
### Baidu Map API
Provider: Baidu Map
Base URL: http://lbsyun.baidu.com
Docs: http://lbsyun.baidu.com/index.php?title=webapi
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 6,000 req/day (free)
Tags: maps
Description: Baidu Map API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Free tier: 6,000 req/day (geocoding). Paid plans for higher volume; requires Chinese business account.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://lbsyun.baidu.com'
```
Sample response:
```json
{}
```
---
### Tencent Map API
Provider: Tencent Map
Base URL: http://lbs.qq.com
Docs: http://lbs.qq.com/webservice_v1/index.html
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 10,000 req/day (free)
Tags: maps
Description: Tencent Map API. See documentation for full details.
Auth: See documentation for authentication details
Pricing: Free tier: 10,000 req/day. Paid plans for commercial use. Requires Tencent developer account.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://lbs.qq.com'
```
Sample response:
```json
{}
```
---
### GraphHopper Directions API
Provider: GraphHopper Directions
Base URL: https://graphhopper.com/api/1
Docs: https://api.apis.guru/v2/specs/graphhopper.com/1.0.0.json
Auth type: API Key Header
Auth example: GET /endpoint?key=YOUR_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 500 req/day (free)
Tags: maps
Description: With the GraphHopper Directions API you can integrate A-to-B route planning, turn-by-turn navigation,
route optimization, isochrone calculations and other tools in your application.
The GraphHopper Directions API consists of the following RESTful web services:
* Routing API,
* Route Optimization API,
Auth: API key as query parameter (key)
Pricing: GraphHopper Directions API. Free: 500 req/day. Standard €29/mo (10K req/day). Professional €99/mo. Premium €499/mo. Open-source self-hosting available.
Endpoints:
POST /cluster POST Cluster Endpoint
POST /cluster/calculate Batch Cluster Endpoint
GET /cluster/solution/{jobId} GET Batch Solution Endpoint
GET /geocode Geocoding Endpoint
GET /isochrone Isochrone Endpoint
POST /match Map-match a GPX file
GET /matrix GET Matrix Endpoint
POST /matrix POST Matrix Endpoint
Sample request:
```bash
curl 'https://graphhopper.com/api/1/cluster' \
-H 'GET /endpoint?key=YOUR_KEY'
```
Sample response:
```json
{}
```
---
### Leaflet.js API
Provider: Leaflet.js
Base URL: http://leafletjs.com
Docs: http://leafletjs.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not applicable (client-side library)
Tags: maps
Description: An open-source JavaScript library for mobile-friendly interactive maps. | !Open Source |
Auth: See documentation for authentication details
Pricing: Free and open-source JavaScript library. No API costs; tile provider costs apply separately.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://leafletjs.com'
```
Sample response:
```json
{}
```
---
### Scribble API
Provider: Scribble
Base URL: https://www.scribblemaps.com
Docs: https://www.scribblemaps.com/api/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by plan
Tags: maps
Description: The Scribble Maps API is a cross browser, mobile ready, HTML5/JavaScript, interactive map builder. | N/A |
Auth: See documentation for authentication details
Pricing: Freemium. Free tier available for address search; paid for higher volume.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.scribblemaps.com'
```
Sample response:
```json
{}
```
---
### Factual API
Provider: Factual
Base URL: https://developer.factual.com
Docs: https://developer.factual.com/docs/getting-started
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on plan
Tags: maps
Description: Providing a places search that can be searched by latitude/longitude, and “where” using full text search query string. | N/A |
Auth: See documentation for authentication details
Pricing: Paid. Foursquare acquired Factual. Place data available via Foursquare Places API from $149/mo.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://developer.factual.com'
```
Sample response:
```json
{}
```
---
### Google API Library API
Provider: Google API Library
Base URL: https://console.developers.google.com
Docs: https://console.developers.google.com/apis/library
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by underlying API
Tags: maps
Description: The Google API Library contains more than 100 apis such as the Google Cloud APIs, the Google Maps APIs, the Google Apps APIs, the Mobile APIs, the Social Media APIs, the Youtube APIs, the Advertising
Auth: See documentation for authentication details
Pricing: Client library, not a direct API. Google APIs pricing varies by service; many have free tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://console.developers.google.com'
```
Sample response:
```json
{}
```
---
### ArulJohn.com API
Provider: ArulJohn.com
Base URL: https://api.aruljohn.com
Docs: https://api.aruljohn.com/ip/json
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: A simple IP Address API in JSON | No | Yes | Yes |
Auth: See documentation for authentication details
Pricing: Free and open. Indian PIN code and address lookup API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://api.aruljohn.com'
```
Sample response:
```json
{}
```
---
### IPFinder API
Provider: IPFinder
Base URL: https://ipfinder.io
Docs: https://ipfinder.io/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,000 req/month (free)
Tags: maps
Description: Geolocation API,ASN API,IP Ranges API,IP Firewall API,Domain API | apiKey | Yes | Yes |
Auth: See documentation for authentication details
Pricing: IP geolocation & threat intelligence. Free: 1,000 req/month. Basic $9.99/mo (10K req). Business $49.99/mo (100K req). Enterprise $99.99/mo. API key required.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://ipfinder.io'
```
Sample response:
```json
{}
```
---
### IPLocate.io API
Provider: IPLocate.io
Base URL: https://www.iplocate.io
Docs: https://www.iplocate.io/docs
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,500 req/day (free, keyless)
Tags: maps
Description: Fast, free, accurate IP geolocation and threat data (proxy/VPN/hosting detection) API | No | Yes | Yes |
Auth: See documentation for authentication details
Pricing: IP geolocation. Free: 1,500 lookups/day (no key). Paid from $15/mo (200K/day). Business $50/mo (750K/day). No key required for free tier.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.iplocate.io'
```
Sample response:
```json
{}
```
---
### Traveller Map API
Provider: Traveller Map
Base URL: https://travellermap.com
Docs: https://travellermap.com/doc/api
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Traveller TTRPG map world, sub sector and sector information in json, PDF and other formats| No | Yes | No |
Auth: See documentation for authentication details
Pricing: Free for Traveller RPG community. Sci-fi universe mapping API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://travellermap.com'
```
Sample response:
```json
{}
```
---
### Traveller TTRPG API
Provider: Traveller TTRPG
Base URL: https://www.mongoosepublishing.com
Docs: https://www.mongoosepublishing.com/collections/traveller-rpgs
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: map world, sub sector and sector information in json, PDF and other formats| No | Yes | No |
Auth: See documentation for authentication details
Pricing: Free for Traveller RPG community. Tabletop RPG data API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.mongoosepublishing.com'
```
Sample response:
```json
{}
```
---
### Geolocated.io API
Provider: Geolocated.io
Base URL: https://geolocated.io
Docs: https://geolocated.io/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 3,000 req/month (free)
Tags: maps
Description: Free IP Geolocation API: 2000 daily lookups, multiple servers worldwide | apikey | Yes | Yes |
Auth: See documentation for authentication details
Pricing: Free: 3,000 req/month. Pro $9/mo (30,000 req), Business $25/mo (100,000 req).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://geolocated.io'
```
Sample response:
```json
{}
```
---
### IP Location API
Provider: IP Location
Base URL: http://ip-api.com
Docs: http://ip-api.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,000 req/day (free)
Tags: maps
Description: Find location with ip address | No | No | Unknown |
Auth: See documentation for authentication details
Pricing: Free: 1,000 req/day. Paid from $9.99/mo (100,000 req) to $149.99/mo (5M req).
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://ip-api.com'
```
Sample response:
```json
{}
```
---
### MapAtlas API
Provider: MapAtlas
Base URL: https://mapatlas.eu
Docs: https://mapatlas.eu/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by plan
Tags: maps
Description: Geocoding, routing, map tiles, directions, and route optimization APIs. EU-hosted | apiKey | Yes | Yes |
Auth: See documentation for authentication details
Pricing: Freemium. Free tier available for map rendering; paid for higher usage.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://mapatlas.eu'
```
Sample response:
```json
{}
```
---
### PostcodeData.nl API
Provider: PostcodeData.nl
Base URL: http://api.postcodedata.nl
Docs: http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 100 req/day (free)
Tags: maps
Description: Provide geolocation data based on postcode for Dutch addresses | No | No | Unknown |
Auth: See documentation for authentication details
Pricing: Free: 100 req/day. Paid plans from €4.95/mo for Dutch postal code lookup.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://api.postcodedata.nl'
```
Sample response:
```json
{}
```
---
### SmartIP.io API
Provider: SmartIP.io
Base URL: https://smartip.io
Docs: https://smartip.io
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 1,000 req/month (free)
Tags: maps
Description: IP Geolocation and Threat Intelligence API | apiKey | Yes | Yes |
Auth: See documentation for authentication details
Pricing: Free: 1,000 req/month. Paid plans for IP geolocation at higher volumes.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://smartip.io'
```
Sample response:
```json
{}
```
---
### Colorado Data Engine API
Provider: Colorado Data Engine
Base URL: http://codataengine.org
Docs: http://codataengine.org/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: maps
Description: Formatted and geolocated Colorado public data | No | Yes | Unknown |
Auth: See documentation for authentication details
Pricing: Free and open. Colorado state government open data API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://codataengine.org'
```
Sample response:
```json
{}
```
---
## Weather (56 APIs)
### OpenWeatherMap API
Provider: OpenWeatherMap
Base URL: https://api.openweathermap.org/data/3.0
Docs: https://openweathermap.org/api
Auth type: API Key Header
Auth example: ?appid=your_api_key
Has free tier: Yes
Starting at: Free tier available
Free quota: 1,000 calls / day
Rate limit: 60 calls/min (free)
Tags: current, forecast, historical, air-quality, alerts
Description: OpenWeatherMap provides weather data from 40,000+ stations and weather models covering 200,000 cities. Access current conditions, 5-day/3-hour forecasts, hourly 4-day forecasts, 16-day daily forecasts, historical data going back 40 years, and weather alert polygons.
Auth: Include your API key as the appid query parameter.
Pricing: Free: 1k calls/day. Startup: $40/mo (100k/day). Developer: $180/mo (300k/day). Professional: $470/mo (unlimited). Historical data extra.
Endpoints:
GET /onecall One-call API: current, minutely, hourly, daily, alerts
GET /onecall/timemachine Historical weather for a specific date
GET /onecall/day_summary Daily weather aggregates for any date
GET /air_pollution Current air quality index and pollutants
GET /air_pollution/forecast Forecasted air pollution data
Sample request:
```bash
curl "https://api.openweathermap.org/data/3.0/onecall?lat=51.5074&lon=-0.1278&units=metric&exclude=minutely&appid=$OWM_API_KEY"
```
Sample response:
```json
{
"lat": 51.5074,
"lon": -0.1278,
"timezone": "Europe/London",
"current": {
"temp": 12.5,
"feels_like": 10.2,
"humidity": 78,
"wind_speed": 5.4,
"weather": [{"main": "Clouds", "description": "overcast clouds"}]
},
"daily": [{"dt": 1680825600, "temp": {"day": 14, "night": 9}, "summary": "Overcast clouds"}]
}
```
---
### Tomorrow.io API
Provider: Tomorrow.io
Base URL: https://api.tomorrow.io/v4
Docs: https://docs.tomorrow.io/reference
Auth type: API Key Header
Auth example: x-api-key: your-api-key
Has free tier: Yes
Starting at: Pay per use
Free quota: 500 calls/day
Rate limit: 3 requests/s (free)
Tags: nowcast, timeline, events, hyperlocal, alerts
Description: Tomorrow.io (formerly ClimaCell) delivers hyperlocal weather intelligence sourced from proprietary IoT sensor networks, radar, satellites, and ML models. Get precipitation-level precision, severe weather alerts, timeline forecasts, and custom weather event triggers for automation.
Auth: Pass your API key in the apikey query parameter or the x-api-key header.
Pricing: Free: 500 calls/day. Developer: $99/mo. Startup: $299/mo. Enterprise: custom pricing for high-volume and custom data layers.
Endpoints:
GET /weather/realtime Real-time weather conditions at a location
GET /weather/forecast Hourly/daily forecast up to 6 months
GET /weather/history/recent Historical weather (last 6 hours)
POST /events/search Search for weather events matching criteria
Sample request:
```bash
curl "https://api.tomorrow.io/v4/weather/realtime?location=42.3478,-71.0466&units=metric" \
-H "x-api-key: $TOMORROW_API_KEY"
```
Sample response:
```json
{
"data": {
"time": "2024-01-18T12:00:00Z",
"values": {
"temperature": 5.2,
"humidity": 62,
"precipitationIntensity": 0,
"windSpeed": 8.1,
"weatherCode": 1100
}
},
"location": {"lat": 42.3478, "lon": -71.0466, "name": "Boston, MA"}
}
```
---
### WeatherAPI
Provider: WeatherAPI.com
Base URL: https://api.weatherapi.com/v1
Docs: https://www.weatherapi.com/docs/
Auth type: API Key Header
Auth example: ?key=YOUR_API_KEY
Has free tier: Yes
Starting at: Free tier available
Free quota: 1,000,000 calls / month
Rate limit: 1,000,000 calls/month (free)
Tags: weather, forecast, historical, air-quality, astronomy, marine, global
Description: WeatherAPI.com provides a simple, affordable weather API covering real-time conditions, 14-day hourly forecasts, 30+ years of historical weather data, marine weather, astronomy data (sunrise/sunset/moonphase), and air quality index. Supports lookup by city name, ZIP code, IP address, UK postcode, and lat/lon coordinates. Covers 2 million+ locations globally with data from 200+ weather stations and models.
Auth: Pass your API key as the key query parameter. Register for a free key at weatherapi.com.
Pricing: Free: 1M calls/mo (3-day forecast, no history). Starter: $4/mo. Standard: $12/mo. Business: $199/mo.
Endpoints:
GET /current.json Current weather conditions for any location
GET /forecast.json Up to 14-day hourly and daily forecast
GET /history.json Historical weather data from 2010 onward (paid plans)
GET /search.json Location autocomplete for search boxes
GET /astronomy.json Sunrise, sunset, moonrise, moonset, and moon phase
GET /marine.json Marine/surf conditions including tide and swell
Sample request:
```bash
curl "https://api.weatherapi.com/v1/forecast.json?key=$WEATHER_API_KEY&q=London&days=3&aqi=yes"
```
Sample response:
```json
{
"location": { "name": "London", "country": "United Kingdom", "lat": 51.52, "lon": -0.11 },
"current": {
"temp_c": 12.0,
"condition": { "text": "Partly cloudy" },
"wind_mph": 9.4,
"humidity": 76
},
"forecast": {
"forecastday": [{ "date": "2024-03-15", "day": { "maxtemp_c": 14.0, "mintemp_c": 8.0 } }]
}
}
```
---
### Climate FieldView Platform APIs
Provider: Climate FieldView Platform APIs
Base URL: https://platform.climate.com/
Docs: https://platform.climate.com/
Auth type: API Key Header
Auth example: X-Api-Key: YOUR_API_KEY
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on contract
Tags: weather, climate
Description: Last Modified: Wed Jan 4 12:47:29 UTC 2023
All endpoints are only accessible via HTTPS.
All API endpoints are located at https://platform.climate.com (e.g.
https://platform.climate.com/v4/fields).
The authorization token endpoint is located at
`https://api.climate.com/api/oauth/toke
Auth: API key in the request header (X-Api-Key)
Pricing: Paid agtech platform. Climate FieldView (Bayer) farmer data API; pricing on request.
Endpoints:
POST /v4/boundaries Upload a boundary
POST /v4/boundaries/query Retrieve Boundaries in batch
GET /v4/boundaries/{boundaryId} Retrieve a Boundary by ID
POST /v4/exports Initiate a new export request.
GET /v4/exports/{exportId}/contents Retrieve the binary contents of a processed export request.
GET /v4/exports/{exportId}/status Retrieve the status of an Export.
GET /v4/farmOrganizations/{farmOrganizationType}/{farmOrganizationId} Retrieve a specific farm organization by organization type and ID
GET /v4/fields Retrieve list of Fields
Sample request:
```bash
curl -X GET 'https://platform.climate.com//v4/boundaries' \
-H 'X-Api-Key: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Groundhog Day API
Provider: Groundhog Day
Base URL: https://virtserver.swaggerhub.com/pcraig3/groundhog-day-api/1.2.1
Docs: https://groundhog-day.com/api
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: weather, groundhog-day
Description: This API returns all of North America’s prognosticating animals and their yearly weather predictions.
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /api/v1 Root
GET /api/v1/groundhogs Get all groundhogs
GET /api/v1/groundhogs/{slug} Get a groundhog by slug
GET /api/v1/predictions Get predictions for a given year
GET /api/v1/spec Get JSON schema
Sample request:
```bash
curl -X GET 'https://virtserver.swaggerhub.com/pcraig3/groundhog-day-api/1.2.1/api/v1' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### ODWeather
Provider: ODWeather
Base URL: https://api.oceandrivers.com/
Docs: https://api.oceandrivers.com/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: weather, oceandrivers
Description: This is the api to access the ODWeather API information
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /v1.0/compareStation/{stationName}/ Get forecast and realtime information for known pointsHello world
","created_at":"2024-01-01T00:00:00.000Z"}] ``` --- ### Ayrshare API Provider: Ayrshare Base URL: https://www.ayrshare.com Docs: https://www.ayrshare.com Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 30 req/min (free) · 100 req/min (paid) Tags: social Description: Social media APIs to post, get analytics, and manage multiple users social media accounts Auth: See documentation for auth details Pricing: Social media posting API. Free: 20 posts/month, 5 platforms. Premium $99/mo: unlimited posts, 7 platforms. Business $499/mo: multi-user, analytics, white-label. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.ayrshare.com' ``` Sample response: ```json {} ``` --- ### aztro API Provider: aztro Base URL: https://aztro.sameerkumar.website Docs: https://aztro.sameerkumar.website/ Auth type: none Auth example: # No auth required Has free tier: Yes Starting at: Free tier available Free quota: Completely free Rate limit: See documentation Tags: social Description: Daily horoscope info for yesterday, today, and tomorrow Auth: No authentication required Pricing: Free — open public API, no authentication required. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://aztro.sameerkumar.website' ``` Sample response: ```json {} ``` --- ### Facebook API Provider: Facebook Base URL: https://developers.facebook.com Docs: https://developers.facebook.com/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 200 calls/hour per user token · 100 calls/s (app-level) Tags: social Description: Facebook Login, Share on FB, Social Plugins, Analytics and more Auth: See documentation for auth details Pricing: Free for approved developers. Facebook Graph API access requires App Review for extended permissions. No usage fees; rate limits enforced by app token tier. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.facebook.com' ``` Sample response: ```json {} ``` --- ### Foursquare API Provider: Foursquare Base URL: https://developer.foursquare.com Docs: https://developer.foursquare.com/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: No Starting at: Pay per use Free quota: None Rate limit: See documentation Tags: social Description: Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc) Auth: See documentation for auth details Pricing: In-person: 2.6% + $0.10. Online: 2.9% + $0.30. Keyed-in: 3.5% + $0.15. No monthly fee for basic processing. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developer.foursquare.com' ``` Sample response: ```json {} ``` --- ### Full Contact API Provider: Full Contact Base URL: https://docs.fullcontact.com Docs: https://docs.fullcontact.com/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: No Starting at: Enterprise / contact sales Free quota: None Rate limit: 600 req/min Tags: social Description: Get Social Media profiles and contact Information Auth: See documentation for auth details Pricing: Paid. Identity resolution and person data enrichment from $499/mo. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://docs.fullcontact.com' ``` Sample response: ```json {} ``` --- ### Hashnode API Provider: Hashnode Base URL: https://hashnode.com Docs: https://hashnode.com Auth type: none Auth example: # No auth required Has free tier: Yes Starting at: Free tier available Free quota: Completely free Rate limit: See documentation Tags: social Description: A blogging platform built for developers Auth: No authentication required Pricing: Free — open public API, no authentication required. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://hashnode.com' ``` Sample response: ```json {} ``` --- ### Kakao API Provider: Kakao Base URL: https://developers.kakao.com Docs: https://developers.kakao.com/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Daily quota per app; varies by API Tags: social Description: Kakao Login, Share on KakaoTalk, Social Plugins and more Auth: See documentation for auth details Pricing: Free for Kakao developers. KakaoTalk social login and messaging APIs. Kakao i (AI) APIs have usage-based pricing. South Korea-focused platform. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.kakao.com' ``` Sample response: ```json {} ``` --- ### Line API Provider: Line Base URL: https://developers.line.biz Docs: https://developers.line.biz/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 100K req/hr Tags: social Description: Line Login, Share on Line, Social Plugins and more Auth: See documentation for auth details Pricing: Free for developers (LINE Messaging API). Pay-as-you-go for outbound messages. Free tier: 200 free messages/month per channel. Additional at ~$0.01-0.05/msg. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.line.biz' ``` Sample response: ```json {} ``` --- ### Meetup.com API Provider: Meetup.com Base URL: https://www.meetup.com Docs: https://www.meetup.com/api/guide Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Not officially published Tags: social Description: Find Meetup events, join groups, or start your own. Make new friends and connect with like-minded people. Meet people near you who share your interests. Auth: See documentation for auth details Pricing: Free with Meetup account. Group and event data API; organizer fees separate. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.meetup.com' ``` Sample response: ```json {} ``` --- ### NAVER API Provider: NAVER Base URL: https://developers.naver.com Docs: https://developers.naver.com/main/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 25,000 req/day (search) Tags: social Description: NAVER Login, Share on NAVER, Social Plugins and more Auth: See documentation for auth details Pricing: Free with Naver developer account. Korean search, maps, and social API. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.naver.com' ``` Sample response: ```json {} ``` --- ### Revolt API Provider: Revolt Base URL: https://developers.revolt.chat Docs: https://developers.revolt.chat/api/ Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 10 req/s (bot tokens) Tags: social Description: Revolt open source Discord alternative Auth: See documentation for auth details Pricing: Free open-source Discord alternative. API is free for bot developers. Self-hostable. No paid tiers for API use. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.revolt.chat' ``` Sample response: ```json {} ``` --- ### Telegraph API Provider: Telegraph Base URL: https://telegra.ph Docs: https://telegra.ph/api Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Reasonable use enforced Tags: social Description: Create attractive blogs easily, to share Auth: See documentation for auth details Pricing: Telegra.ph publishing API. Completely free — anonymous publishing platform by Telegram. No authentication required for basic use. No rate card. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://telegra.ph' ``` Sample response: ```json {} ``` --- ### TikTok API Provider: TikTok Base URL: https://developers.tiktok.com Docs: https://developers.tiktok.com/doc/login-kit-web Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Varies by product (Login Kit: 500K users/day; Research API: 100K req/day) Tags: social Description: Fetches user info and user's video posts on TikTok platform Auth: See documentation for auth details Pricing: Free for approved developers (requires application review). Content Posting, Login Kit, and Research API access available. Usage subject to platform policies. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.tiktok.com' ``` Sample response: ```json {} ``` --- ### Trash Nothing API Provider: Trash Nothing Base URL: https://trashnothing.com Docs: https://trashnothing.com/developer Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Not officially published Tags: social Description: A freecycling community with thousands of free items posted every day Auth: See documentation for auth details Pricing: Free with Trash Nothing account. Free stuff gifting community API. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://trashnothing.com' ``` Sample response: ```json {} ``` --- ### Disqus API Provider: Disqus Base URL: https://disqus.com Docs: https://disqus.com/api/docs/auth/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 1,000 req/hour (unauthenticated) · Higher with auth Tags: social Description: More publishers trust us to engage, grow, and understand their audiences than any other. Build your on-site community with Disqus. Auth: See documentation for auth details Pricing: Free for basic commenting. Disqus Plus $11/mo: no ads, custom reactions. Disqus Pro $99/mo: analytics, SSO. Enterprise custom. API usage is free with limits. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://disqus.com' ``` Sample response: ```json {} ``` --- ### Fuck Off as a Service API Provider: Fuck Off as a Service Base URL: https://www.foaas.com Docs: https://www.foaas.com Auth type: none Auth example: # No auth required Has free tier: Yes Starting at: Free tier available Free quota: Completely free Rate limit: See documentation Tags: social Description: RESTful API (Representational State Transfer) has become a standard in the web development world due to its simplicity, scalability and flexibility. Auth: No authentication required Pricing: Free — open public API, no authentication required. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.foaas.com' ``` Sample response: ```json {} ``` --- ### Open Collective API Provider: Open Collective Base URL: https://docs.opencollective.com Docs: https://docs.opencollective.com/help/developers/api Auth type: none Auth example: # No auth required Has free tier: Yes Starting at: Free tier available Free quota: Completely free Rate limit: See documentation Tags: social Description: We are on a mission to help collaborative groups collect and spend money transparently. Auth: No authentication required Pricing: Free — open public API, no authentication required. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://docs.opencollective.com' ``` Sample response: ```json {} ``` --- ### Pinterest API Provider: Pinterest Base URL: https://developers.pinterest.com Docs: https://developers.pinterest.com/ Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 1 req/s per user token Tags: social Description: The world's catalog of ideas Auth: See documentation for auth details Pricing: Free for approved developers. Pinterest API v5 requires app review. OAuth 2.0. Standard access free; advertising features need partner approval. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://developers.pinterest.com' ``` Sample response: ```json {} ``` --- ### Product Hunt API Provider: Product Hunt Base URL: https://api.producthunt.com Docs: https://api.producthunt.com/v2/docs Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: GraphQL: reasonable use enforced Tags: social Description: The best new products in tech Auth: See documentation for auth details Pricing: Free API access for developers. Requires OAuth 2.0. GraphQL API. Rate limits apply. Good for building integrations around product launches. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://api.producthunt.com' ``` Sample response: ```json {} ``` --- ### Saidit API Provider: Saidit Base URL: https://www.saidit.net Docs: https://www.saidit.net/dev/api Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Not officially published Tags: social Description: Open Source Reddit Clone Auth: See documentation for auth details Pricing: Free and open-source Reddit alternative API. No paid tiers. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.saidit.net' ``` Sample response: ```json {} ``` --- ### Telegram MTProto API Provider: Telegram MTProto Base URL: https://api.telegram.org Docs: https://core.telegram.org/api#getting-started Auth type: API Key Header Auth example: GET https://api.telegram.org/bot{YOUR_BOT_TOKEN}/getMe Has free tier: Yes Starting at: Free Free quota: Completely free, no limits Rate limit: 30 messages/sec (global); 1 message/sec per chat Tags: communication, messaging, bots, chat, social Description: Read and write Telegram data Auth: Bot token appended to the base URL path (no header required) Pricing: The Telegram Bot API is 100% free with no usage limits. Bots can send up to 30 messages/second globally, or 1 message/second per chat. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://core.telegram.org' ``` Sample response: ```json {} ``` --- ### Tumblr API Provider: Tumblr Base URL: https://www.tumblr.com Docs: https://www.tumblr.com/docs/en/api/v2 Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 250 req/day (unauthenticated) · 300 req/hour (OAuth) Tags: social Description: Explore trending topics on Tumblr. See all of the GIFs, fan art, and general conversation about the internet’s favorite things. Auth: See documentation for auth details Pricing: Free API access. Tumblr API is free for developers; requires OAuth 1.0a. No paid API tiers. Rate limits enforced based on request volume. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.tumblr.com' ``` Sample response: ```json {} ``` --- ### vk API Provider: vk Base URL: https://vk.com Docs: https://vk.com/dev/sites Auth type: OAuth 2.0 Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 3 req/s (default) · 5 req/s (with captcha solve) Tags: social Description: Read and write vk data Auth: See documentation for auth details Pricing: Free API access (VKontakte). Requires developer account. OAuth 2.0 authentication. No paid API tiers; rate limits apply. Russian social network. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://vk.com' ``` Sample response: ```json {} ``` --- ### Pinterest API Provider: Pinterest Base URL: https://www.pinterest.com Docs: https://www.pinterest.com/login/?next=http%3A%2F%2Fdevelopers.pinterest.com%2Fapi_docs%2F Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 1 req/s per user token · 1K req/day (app-level basic) Tags: social Description: Pinterest API. See documentation for full details. Auth: See documentation for authentication details Pricing: Free for approved developers. Pinterest API v5 requires app review. Ads API for business. Standard access free; some features require partner approval. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.pinterest.com' ``` Sample response: ```json {} ``` --- ### DeviantArt API Provider: DeviantArt Base URL: https://www.deviantart.com Docs: https://www.deviantart.com/developers/ Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 120 req/min (client credentials) · 120 req/min (OAuth) Tags: social Description: The largest social networking website for artists and art enthusiasts. | N/A | Auth: See documentation for authentication details Pricing: Free API for developers. DeviantArt API requires OAuth 2.0 registration. No paid tiers. Access to artworks, community features, galleries. Rate limits apply. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://www.deviantart.com' ``` Sample response: ```json {} ``` --- ### Buffer API Provider: Buffer Base URL: https://buffer.com Docs: https://buffer.com/developers/api Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: 60 req/min (OAuth) Tags: social Description: The Buffer API provides access to user's pending and sent updates, social media profiles, scheduled times and more. Auth: See documentation for authentication details Pricing: Free: 3 channels, 10 scheduled posts each. Essentials $6/channel/mo: scheduling, analytics. Team $12/channel/mo: collaboration. Agency $120/mo (10 channels). Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://buffer.com' ``` Sample response: ```json {} ``` --- ### Meta Generator API Provider: Meta Generator Base URL: https://meta-api.fzr.ai Docs: https://meta-api.fzr.ai Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Not officially published Tags: social Description: Generate SEO meta tags, Open Graph and Twitter Cards from any URL or text | apiKey | Yes | Yes | Auth: See documentation for authentication details Pricing: Free and open. HTML meta tag generator; no paid tiers. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://meta-api.fzr.ai' ``` Sample response: ```json {} ``` --- ### FishFish API Provider: FishFish Base URL: https://fishfish.gg Docs: https://fishfish.gg/ Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: Yes Starting at: Enterprise / contact sales Free quota: None Rate limit: Not officially published Tags: social Description: A volunteer cybersecurity project focused on providing resources and services that improve safety across Discord | No | Yes | Unknown | Auth: See documentation for authentication details Pricing: Free and open. Phishing domain detection API; community maintained. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://fishfish.gg' ``` Sample response: ```json {} ``` --- ### SocialData API Provider: SocialData API Base URL: https://socialdata.tools Docs: https://socialdata.tools Auth type: API Key Header Auth example: Authorization: Bearer YOUR_TOKEN Has free tier: No Starting at: Enterprise / contact sales Free quota: None Rate limit: Based on plan Tags: social Description: Unofficial API to read Twitter data | apiKey | Yes | No | Auth: See documentation for authentication details Pricing: Paid. Twitter/X data API starting at $49/mo for filtered tweets and user data. Endpoints: GET / See documentation for endpoint reference Sample request: ```bash curl 'https://socialdata.tools' ``` Sample response: ```json {} ``` --- ## Communication (54 APIs) ### Twilio API Provider: Twilio Base URL: https://api.twilio.com/2010-04-01 Docs: https://www.twilio.com/docs/usage/api Auth type: Basic Auth Auth example: Authorization: Basic base64(AccountSID:AuthToken) Has free tier: Yes Starting at: Pay per use Free quota: $15 free trial credit Rate limit: 1 request/s per phone number Tags: sms, voice, whatsapp, verify, otp Description: Twilio's API platform powers communications for millions of developers. Send and receive SMS/MMS, make and receive voice calls, build IVR systems, send WhatsApp messages, verify phone numbers and users with OTP, and send transactional email via SendGrid (Twilio subsidiary). Auth: HTTP Basic Auth using your Account SID as username and Auth Token as password. Pricing: SMS: $0.0079/message. Voice: $0.0085/min. WhatsApp: $0.005/message. Free trial includes $15 credit. Volume discounts available. Endpoints: POST /Accounts/{SID}/Messages.json Send an SMS or MMS message GET /Accounts/{SID}/Messages.json List messages POST /Accounts/{SID}/Calls.json Initiate a voice call POST /Accounts/{SID}/IncomingPhoneNumbers.json Buy a phone number Sample request: ```bash curl -X POST https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json \ -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \ --data-urlencode "To=+15005550006" \ --data-urlencode "From=+15017122661" \ --data-urlencode "Body=Hello from Twilio!" ``` Sample response: ```json { "sid": "SM87105da94bff44b999e4e6eb90d8eb6a", "status": "queued", "to": "+15005550006", "from": "+15017122661", "body": "Hello from Twilio!", "price": "-0.00750", "date_created": "Thu, 18 Jan 2024 12:00:00 +0000" } ``` --- ### SendGrid API Provider: Twilio SendGrid Base URL: https://api.sendgrid.com/v3 Docs: https://docs.sendgrid.com Auth type: Bearer Token Auth example: Authorization: Bearer SG... Has free tier: Yes Starting at: Pay per use Free quota: $15 free trial credit Rate limit: 600 requests/min Tags: email, templates, marketing, tracking, webhooks Description: SendGrid delivers 100 billion emails per year for businesses like Airbnb, Uber, and Spotify. Send transactional emails from code, design marketing campaigns with drag-and-drop templates, set up automated drip sequences, parse inbound email, and track open and click rates. Auth: Pass your SendGrid API key as a Bearer token in the Authorization header. Pricing: Free: 100 emails/day. Essentials: $19.95/mo (50k emails). Pro: $89.95/mo (100k emails). Overage ~$0.00133/email on Essentials. Endpoints: POST /mail/send Send a transactional email POST /marketing/campaigns Create a marketing campaign GET /stats Get email performance statistics POST /templates Create a dynamic email template GET /suppression/bounces Get list of bounced emails Sample request: ```bash curl -X POST https://api.sendgrid.com/v3/mail/send \ -H "Authorization: Bearer $SENDGRID_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "personalizations": [{"to": [{"email": "user@example.com"}]}], "from": {"email": "sender@yourdomain.com"}, "subject": "Welcome!", "content": [{"type": "text/plain", "value": "Thanks for signing up."}] }' ``` Sample response: ```json HTTP 202 Accepted # No body returned on success # Check X-Message-Id header: X-Message-Id: 5aH6dM1sT2KABZvhJ-wr0A ``` --- ### Slack API Provider: Slack Base URL: https://slack.com/api Docs: https://api.slack.com/docs Auth type: Bearer Token Auth example: Authorization: Bearer xoxb-... Has free tier: Yes Starting at: Free tier available Free quota: Full API access on free Slack plans Rate limit: 1 request/s per method (Tier 1) Tags: messages, channels, webhooks, bots, blocks Description: The Slack API lets you build bots, post to channels, respond to slash commands, open modals, react to events via webhooks, search messages, manage users and channels, and create interactive workflows. Available as REST API or via the Bolt SDK. Auth: Use OAuth 2.0 access tokens (user or bot) as Bearer tokens. Webhook URLs work without tokens. Pricing: Slack API usage is free. Slack workspace plans: Free (90-day message history), Pro $7.25/user/mo, Business+ $12.50/user/mo. Rate limits tighten on free tier. Endpoints: POST /chat.postMessage Send a message to a channel or DM GET /conversations.history Fetch conversation history GET /conversations.list List all channels in workspace POST /views.open Open a modal view POST /reactions.add Add an emoji reaction to a message GET /users.list List workspace members Sample request: ```bash curl -X POST https://slack.com/api/chat.postMessage \ -H "Authorization: Bearer $SLACK_BOT_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "channel": "C0123456789", "text": "Hello from the API!", "blocks": [{"type":"section","text":{"type":"mrkdwn","text":"*Bold* and _italic_"}}] }' ``` Sample response: ```json { "ok": true, "channel": "C0123456789", "ts": "1716249600.123456", "message": { "type": "message", "text": "Hello from the API!", "bot_id": "B0123456789", "ts": "1716249600.123456" } } ``` --- ### Postmark API Provider: ActiveCampaign Base URL: https://api.postmarkapp.com Docs: https://postmarkapp.com/developer Auth type: API Key Header Auth example: X-Postmark-Server-Token: YOUR_SERVER_TOKEN Has free tier: Yes Starting at: Free tier available Free quota: Free forever Rate limit: 50 requests/sec Tags: email, transactional, smtp, templates, bounce-tracking, delivery Description: Postmark specializes in reliable transactional email delivery — think password resets, receipts, and notifications. It maintains dedicated sending infrastructure (separate from marketing email) to maximize inbox delivery rates. Features include DKIM/SPF/DMARC support, bounce and spam complaint tracking, click/open tracking, HTML + text templates, and message streams for organizing different email types. Auth: Pass your Server API token in the X-Postmark-Server-Token request header. Find it in Postmark → Server → API Tokens. Pricing: Free: 100 emails/mo. PAYG: $1.50/1k emails. Monthly: from $15/mo (10k emails). Volume discounts start at 300k emails. Endpoints: POST /email Send a single transactional email POST /email/batch Send up to 500 emails in one API call POST /email/withTemplate Send email using a stored template with variables GET /messages/outbound List sent messages with delivery status GET /bounces List bounced emails with bounce type and detail GET /stats/outbound Delivery stats: open rates, click rates, bounces Sample request: ```bash curl "https://api.postmarkapp.com/email" \ -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN" \ -H "Content-Type: application/json" \ -X POST \ -d '{"From":"sender@example.com","To":"user@example.com","Subject":"Your order is confirmed","HtmlBody":"Dig into our logoraisr API reference documentation. We also offer an OpenAPI specification to allow easy integration into your systems. You can download the json file by clicking on the download button.
OpenAPI 2.0 Validati
Auth: API key in the request header (Authorization)
Pricing: Free trial: 5 image upscales. Pay-as-you-go from €0.12/image. AI image upscaling.
Endpoints:
GET /previews/{file_id}/ Get preview image of uploaded file
GET /processes/ Get process list.
GET /projects/ Get user project list.
POST /projects/ Create a new project.
GET /projects/{project_number}/ Get project details.
GET /reports/ Get user report list.
POST /reports/ Create a new report.
GET /reports/{report_number}/ Get report details.
Sample request:
```bash
curl -X GET 'https://api.logoraisr.com/rest-v1/previews/{file_id}/' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### NetBox API
Provider: NetBox
Base URL: https://demo.netbox.dev/api
Docs: https://demo.netbox.dev/api
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 10 GB storage / forever
Rate limit: 4,000 API calls/min (authenticated)
Tags: developer, maps, storage, cloud storage, files, enterprise, collaboration
Description: API to access NetBox
Auth: OAuth 2.0 or JWT (Server Authentication) for machine-to-machine
Pricing: Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom.
Endpoints:
DELETE /circuits/circuit-terminations/ DELETE /circuits/circuit-terminations/
GET /circuits/circuit-terminations/ GET /circuits/circuit-terminations/
PATCH /circuits/circuit-terminations/ PATCH /circuits/circuit-terminations/
POST /circuits/circuit-terminations/ POST /circuits/circuit-terminations/
PUT /circuits/circuit-terminations/ PUT /circuits/circuit-terminations/
DELETE /circuits/circuit-terminations/{id}/ DELETE /circuits/circuit-terminations/{id}/
GET /circuits/circuit-terminations/{id}/ GET /circuits/circuit-terminations/{id}/
PATCH /circuits/circuit-terminations/{id}/ PATCH /circuits/circuit-terminations/{id}/
Sample request:
```bash
curl -X GET 'https://demo.netbox.dev/api/circuits/circuit-terminations/' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### NOWPayments API
Provider: NOWPayments
Base URL: https://api.nowpayments.io
Docs: https://api.nowpayments.io
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: storage, nowpayments
Description: NOWPayments is a non-custodial cryptocurrency payment processing platform. Accept payments in a wide range of cryptos and get them instantly converted into a coin of your choice and sent to your wallet. Keeping it simple – no excess.
Sandbox
Before production usage, you can test our API using th
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /v1/estimate Get estimated price
GET /v1/min-amount Get the minimum payment amount
GET /v1/payment/ Get list of payments
POST /v1/payment/{id}/update-merchant-estimate Get/Update payment estimate
GET /v1/payment/{payment_id} Get payment status
POST /v1/payout/{withdrawals-id}/verify Verify payout
GET /v1/sub-partner Get sub-partners
GET /v1/sub-partner/balance/{id} Get sub-partner balance
Sample request:
```bash
curl -X GET 'https://api.nowpayments.io/v1/estimate' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### PI Web API 2018 SP1 Swagger Spec
Provider: PI Web API 2018 SP1 Swagger Spec
Base URL: https://devdata.osisoft.com/piwebapi
Docs: https://techsupport.osisoft.com/
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: storage, osisoft
Description: Swagger Spec file that describes PI Web API
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET / Get top level links for this PI System Web API instance.
GET /analyses Retrieve an Analysis by path.
GET /analyses/search Retrieve analyses based on the specified conditions. By default, returns all analyses.
DELETE /analyses/{webId} Delete an Analysis.
GET /analyses/{webId} Retrieve an Analysis.
PATCH /analyses/{webId} Update an Analysis.
GET /analyses/{webId}/categories Get an Analysis' categories.
GET /analyses/{webId}/security Get the security information of the specified security item associated with the Analysis for a specified user.
Sample request:
```bash
curl -X GET 'https://devdata.osisoft.com/piwebapi/' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Slicebox API
Provider: Slicebox
Base URL: http://slicebox.local/api
Docs: http://github.org/slicebox/slicebox
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 10 GB storage / forever
Rate limit: 4,000 API calls/min (authenticated)
Tags: maps, entertainment, payments, storage, cloud storage, files, enterprise, collaboration
Description: Slicebox - safe sharing of medical images
Auth: OAuth 2.0 or JWT (Server Authentication) for machine-to-machine
Pricing: Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom.
Endpoints:
POST /anonymization/anonymize anonymize the images corresponding to the supplied list of image IDs (each paire
GET /anonymization/keys get a list of anonymization keys, each specifying how vital DICOM attributes hav
GET /anonymization/keys/export/csv export all anonymization keys as a csv file
POST /anonymization/keys/query submit a query for anonymization keys
DELETE /anonymization/keys/{id} delete an anonymization key that is no longer of interest
GET /anonymization/keys/{id} get the anonymization key with the supplied ID
GET /anonymization/keys/{id}/keyvalues get pointers to the images corresponding to the anonymization key with the suppl
GET /anonymization/options list all supported anonymization options defining an anonymization profile
Sample request:
```bash
curl -X GET 'http://slicebox.local/api/anonymization/anonymize' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Taxamo
Provider: Taxamo
Base URL: https://api.taxamo.com/
Docs: https://api.taxamo.com/
Auth type: API Key Header
Auth example: Token: YOUR_API_KEY
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: storage, taxamo
Description: Taxamo’s elegant suite of APIs and comprehensive reporting dashboard enables digital merchants to easily comply with EU regulatory requirements on tax calculation, evidence collection, tax return creation and data storage.
Auth: API key in the request header (Token)
Pricing: Pay-as-you-go digital VAT/tax calculation. $0.006/transaction. No monthly minimum.
Endpoints:
GET /api/v1/dictionaries/countries Countries
GET /api/v1/dictionaries/currencies Currencies
GET /api/v1/dictionaries/product_types Product types
GET /api/v1/geoip Locate IP
GET /api/v1/geoip/{ip} Locate provided IP
GET /api/v1/reports/domestic/summary Calculate domestic summary
GET /api/v1/reports/eu/vies Calculate EU VIES report
GET /api/v1/settlement/detailed_refunds Detailed refunds
Sample request:
```bash
curl -X GET 'https://api.taxamo.com//api/v1/dictionaries/countries' \
-H 'Token: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Quick start - Telematics SDK
Provider: Quick start - Telematics SDK
Base URL: https://api.telematicssdk.com
Docs: https://api.telematicssdk.com
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: storage, telematicssdk
Description: Introduction
We have prepared a set of APIs for quick start to integrate telematics SDK that powers mobile telematics inside 3rd party mobile applications.
* CONTACT US
* SANDBOX
* DEV.PORTAL
* [DEMO APP](ht
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /mobilesdk/stage/track/get_track/v1 Trips - trip details
GET /statistics/v1/Scorings/consolidated /v1/Scorings/consolidated
GET /statistics/v1/Scorings/consolidated/daily /v1/Scorings/consolidated/daily
GET /statistics/v1/Scorings/individual/ User safe scoring - Accumulated value - v1/Scorings/individual
GET /statistics/v1/Scorings/individual/daily User safe scoring - daily value - /v1/Scorings/individual/daily
GET /statistics/v1/Statistics/consolidated /v1/Statistics/consolidated
GET /statistics/v1/Statistics/consolidated/daily /v1/Statistics/consolidated/daily
GET /statistics/v1/Statistics/individual/ User statistics - Accumulated value - /v1/Statistics/individual
Sample request:
```bash
curl -X GET 'https://api.telematicssdk.com/mobilesdk/stage/track/get_track/v1' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Urlbox API
Provider: Urlbox
Base URL: https://api.urlbox.io
Docs: https://api.urlbox.io
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 10 GB storage / forever
Rate limit: 4,000 API calls/min (authenticated)
Tags: maps, entertainment, payments, storage, cloud storage, files, enterprise, collaboration
Description: A plugin that allows the user to capture screenshots of a web page from a URL or HTML using ChatGPT.
Auth: OAuth 2.0 or JWT (Server Authentication) for machine-to-machine
Pricing: Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom.
Endpoints:
POST /v1/render/sync Render a URL as an image or video
Sample request:
```bash
curl -X GET 'https://api.urlbox.io/v1/render/sync' \
-H 'Authorization: Bearer YOUR_TOKEN'
```
Sample response:
```json
{}
```
---
### SearchLy API v1
Provider: SearchLy API v1
Base URL: https://searchly.asuarez.dev/api/v1
Docs: https://searchly.asuarez.dev/api/v1
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: storage, asuarez
Description: Introduction
The SearchLy API provides similarity searching based on song lyrics.
Operations
The API allows for the /similarity/by_song operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional /similarity/by_content endpo
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
POST /similarity/by_content API endpoint to search similarity using content
GET /similarity/by_song API endpoint to search similarity using a song identifier
GET /song/search API endpoint to search songs from the database given a query
Sample request:
```bash
curl -X GET 'https://searchly.asuarez.dev/api/v1/similarity/by_content' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Authorized Partner API Specification
Provider: Authorized Partner API Specification
Base URL: https://betaapi.digitallocker.gov.in/public
Docs: https://betaapi.digitallocker.gov.in/public
Auth type: API Key Header
Auth example: X-2: YOUR_API_KEY
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on partner tier
Tags: storage, digitallocker
Description: To access files in user’s DigiLocker account from your application, you must first obtain user’s authorization.
Auth: API key in the request header (X-2)
Pricing: Free for authorized partners. API access via partnership agreement.
Endpoints:
POST /account/1/pushuri Push URI to Account
POST /account/2/verify Verify Account
GET /oauth2/1/authorize Get Authorization Code
POST /oauth2/1/code Get Device Code
POST /oauth2/1/file/upload Upload file to locker
GET /oauth2/1/file/{uri} Get File from URI
GET /oauth2/1/files/ Get List of Self Uploaded Documents
GET /oauth2/1/files/issued Issued Documents
Sample request:
```bash
curl -X GET 'https://betaapi.digitallocker.gov.in/public/account/1/pushuri' \
-H 'X-2: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Profile
Provider: Profile
Base URL: https://www.haloapi.com/profile
Docs: https://www.haloapi.com/profile
Auth type: API Key Header
Auth example: Ocp-Apim-Subscription-Key: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Varies by plan
Tags: storage, haloapi
Description: API that provides Profile information about Players.
Auth: API key in the request header (Ocp-Apim-Subscription-Key)
Pricing: Freemium. User profile service; free tier typically available.
Endpoints:
GET /h5/profiles/{player}/appearance Halo 5 - Player Appearance
GET /h5/profiles/{player}/emblem Halo 5 - Player Emblem Image
GET /h5/profiles/{player}/spartan Halo 5 - Player Spartan Image
Sample request:
```bash
curl -X GET 'https://www.haloapi.com/profile/h5/profiles/{player}/appearance' \
-H 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### eNanoMapper database
Provider: eNanoMapper database
Base URL: https://api.ideaconsult.net/enanomapper
Docs: https://phabricator.ideaconsult.net
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: storage, ideaconsult
Description: AMBIT REST web services [eNanoMapper profile] with free text & faceted search
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /enm/{db}/investigation Details of multiple studies
GET /enm/{db}/query/compound/{term}/{representation} Exact chemical structure search
GET /enm/{db}/query/similarity Exact similarity search
GET /enm/{db}/query/smarts Substructure search
GET /enm/{db}/query/study Search endpoint summary
GET /enm/{db}/substance List substances
GET /enm/{db}/substance/{uuid} Get a substance
GET /enm/{db}/substance/{uuid}/composition Substance composition
Sample request:
```bash
curl -X GET 'https://api.ideaconsult.net/enanomapper/enm/{db}/investigation' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### MailboxValidator Free Email Checker
Provider: MailboxValidator Free Email Checker
Base URL: https://api.mailboxvalidator.com/
Docs: https://api.mailboxvalidator.com/
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 10 GB storage / forever
Rate limit: 4,000 API calls/min (authenticated)
Tags: maps, entertainment, payments, storage, cloud storage, files, enterprise, collaboration
Description: The MailboxValidator Free Email Checker checks if a single email address is from a free email provider and returns the results in either JSON or XML format. Refer to https://www.mailboxvalidator.com/api-email-freem for further information.
Auth: OAuth 2.0 or JWT (Server Authentication) for machine-to-machine
Pricing: Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom.
Endpoints:
GET /v1/email/free The Free Email Checker API does validation on a single email address and returns
Sample request:
```bash
curl -X GET 'https://api.mailboxvalidator.com//v1/email/free' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Archive API
Provider: Archive
Base URL: http://api.nytimes.com/svc/archive/v1
Docs: http://api.nytimes.com/svc/archive/v1
Auth type: API Key Header
Auth example: GET /endpoint?api-key=YOUR_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: storage, nytimes
Description: The Archive API provides lists of NYT articles by month going back to 1851. You can use it to build your own local database of NYT article metadata.
Auth: API key as a query parameter (api-key)
Pricing: Free and open. Internet Archive Wayback Machine API; no paid tiers.
Endpoints:
GET /{year}/{month}.json Archive API
Sample request:
```bash
curl -X GET 'http://api.nytimes.com/svc/archive/v1/{year}/{month}.json' \
-H 'GET /endpoint?api-key=YOUR_KEY'
```
Sample response:
```json
{}
```
---
### OnSched Consumer API
Provider: OnSched Consumer
Base URL: https://sandbox-api.onsched.com/
Docs: https://sandbox-api.onsched.com/
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: 10 GB storage / forever
Rate limit: 4,000 API calls/min (authenticated)
Tags: maps, entertainment, payments, storage, cloud storage, files, enterprise, collaboration
Description: Build secure and scalable custom apps for Online Booking. Our flexible API provides many options for availability and booking.
A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design
Auth: API key in the Authorization header
Pricing: Pay-as-you-go. $0.14/machine hour, $1.50/GB data transfer out, $0.25/GB storage.
Endpoints:
GET /#Action=BatchDeleteAttributes Performs multiple DeleteAttributes operations in a single call, which reduce
POST /#Action=BatchDeleteAttributes Performs multiple DeleteAttributes operations in a single call, which reduce
GET /#Action=BatchPutAttributes The The The The Deletes one or more attributes associated with an item. If all attributes of
POST /#Action=DeleteAttributes Deletes one or more attributes associated with an item. If all attributes of
Sample request:
```bash
curl 'http://sdb.amazonaws.com/#Action=BatchDeleteAttributes' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### LinkedData.Center API
Provider: LinkedData.Center
Base URL: http://linkeddata.center
Docs: http://linkeddata.center/home/gdaas
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: storage
Description: a RDF graph database as a service with W3C SPARQL query and SPARQL update apis. | 💸 |
Auth: See documentation for authentication details
Pricing: Free and open. Linked Data Center semantic web API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://linkeddata.center'
```
Sample response:
```json
{}
```
---
### Acoustid API
Provider: Acoustid
Base URL: https://acoustid.org
Docs: https://acoustid.org/webservice
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 3 req/s
Tags: storage
Description: Supports searching through their fingerprint database. | !Open Source |
Auth: See documentation for authentication details
Pricing: Free and open. AcoustID audio fingerprinting and MusicBrainz lookup; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://acoustid.org'
```
Sample response:
```json
{}
```
---
### IGDB API
Provider: IGDB
Base URL: https://www.igdb.com
Docs: https://www.igdb.com/api
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 4 req/s (free with Twitch auth)
Tags: storage
Description: Access the International Games Database and get information about video games, characters, companies, genres and many more. Commercial usage is allowed. | N/A |
Auth: See documentation for authentication details
Pricing: Free with Twitch developer account (requires Twitch Client-ID). Up to 4 req/s, 500/month in dev mode.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://www.igdb.com'
```
Sample response:
```json
{}
```
---
### BrewereyDB API
Provider: BrewereyDB
Base URL: http://www.brewerydb.com
Docs: http://www.brewerydb.com/developers
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: storage
Description: BreweryDB is a database of breweries, beers, beer events and guilds.
Auth: See documentation for authentication details
Pricing: Free with developer account. Open beer and brewery database API.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://www.brewerydb.com'
```
Sample response:
```json
{}
```
---
### TimeZones iCal Library API
Provider: TimeZones iCal Library
Base URL: https://tz.add-to-calendar-technology.com
Docs: https://tz.add-to-calendar-technology.com/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not applicable
Tags: storage
Description: Database of official time zones and corresponding iCal VTIMEZONE blocks | No | Yes | Unknown |
Auth: See documentation for authentication details
Pricing: Free and open-source. IANA timezone iCal library; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'https://tz.add-to-calendar-technology.com'
```
Sample response:
```json
{}
```
---
### Chuck Norris Database API
Provider: Chuck Norris Database
Base URL: http://www.icndb.com
Docs: http://www.icndb.com/api/
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: storage
Description: Jokes | No | No | Unknown |
Auth: See documentation for authentication details
Pricing: Free and open. Chuck Norris jokes API; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://www.icndb.com'
```
Sample response:
```json
{}
```
---
### Jservice API
Provider: Jservice
Base URL: http://jservice.io
Docs: http://jservice.io
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_TOKEN
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: storage
Description: Jeopardy Question Database | No | No | Unknown |
Auth: See documentation for authentication details
Pricing: Free and open. Jeopardy! questions API; no paid tiers.
Endpoints:
GET / See documentation for endpoint reference
Sample request:
```bash
curl 'http://jservice.io'
```
Sample response:
```json
{}
```
---
## Authentication (45 APIs)
### Auth0 API
Provider: Okta (Auth0)
Base URL: https://{tenant}.auth0.com/api/v2
Docs: https://auth0.com/docs/api
Auth type: OAuth 2.0
Auth example: Authorization: Bearer Management_API_token
Has free tier: Yes
Starting at: Free tier available
Free quota: 7,500 MAU / month
Rate limit: 50 requests/s (Management API)
Tags: sso, mfa, social-login, machine-to-machine, oidc
Description: Auth0 provides identity as a service with support for every auth pattern: social logins (Google, GitHub, Apple), enterprise SSO (SAML, OIDC), passwordless, MFA, machine-to-machine (client credentials), and B2B multi-tenancy with Organizations. Integrates in minutes.
Auth: Use OAuth 2.0/OIDC. For Management API actions, obtain a Management API token via the client credentials grant.
Pricing: Free: 7,500 MAU. Essential: $23/mo (1k MAU). Professional: $240/mo (1k MAU + enterprise features). Enterprise: custom.
Endpoints:
POST /oauth/token Get access token (multiple grant types)
GET /userinfo Get authenticated user info (OIDC)
GET /api/v2/users List and search users
POST /api/v2/users Create a user
PATCH /api/v2/users/{id} Update a user
POST /api/v2/users/{id}/roles Assign roles to a user
Sample request:
```bash
# Get Management API token
curl -X POST https://$AUTH0_DOMAIN/oauth/token \
-H "Content-Type: application/json" \
-d '{
"client_id": "'$AUTH0_CLIENT_ID'",
"client_secret": "'$AUTH0_CLIENT_SECRET'",
"audience": "https://'$AUTH0_DOMAIN'/api/v2/",
"grant_type": "client_credentials"
}'
```
Sample response:
```json
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6...",
"expires_in": 86400,
"token_type": "Bearer"
}
# Then list users:
GET /api/v2/users?page=0&per_page=50
→ [{"user_id":"auth0|abc123","email":"user@example.com","name":"Jane"}]
```
---
### Firebase Authentication
Provider: Google Firebase
Base URL: https://identitytoolkit.googleapis.com/v1
Docs: https://firebase.google.com/docs/reference/rest/auth
Auth type: API Key Header
Auth example: ?key=AIzaSy...
Has free tier: Yes
Starting at: Free tier available
Free quota: 10K/month phone verifications; unlimited other sign-ins
Rate limit: 1M users per project (Spark)
Tags: email-password, phone-otp, google-sign-in, jwt, custom-tokens
Description: Firebase Authentication provides backend services to authenticate users using passwords, phone numbers, and federated identity providers (Google, Facebook, Apple, GitHub, Twitter, Microsoft). Handles JWT token lifecycle, refresh tokens, and email verification flows.
Auth: Include your Firebase Web API Key as a key query parameter for REST endpoints.
Pricing: Free forever for email/social auth. Phone auth: 10K verifications/month free on Spark; $0.006 per verification on Blaze plan after threshold.
Endpoints:
POST /accounts:signUp Create a new email/password user
POST /accounts:signInWithPassword Sign in with email and password
POST /accounts:sendOobCode Send password reset or verification email
POST /accounts:update Update user profile or password
POST /accounts:lookup Look up user data by ID token
POST /token Refresh an ID token
Sample request:
```bash
curl -X POST "https://identitytoolkit.googleapis.com/v1/accounts:signInWithPassword?key=$FIREBASE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "securepassword",
"returnSecureToken": true
}'
```
Sample response:
```json
{
"localId": "ZY6sY3NfRXYJ0N...",
"email": "user@example.com",
"displayName": "",
"idToken": "eyJhbGciOiJSUzI1NiIsImtpZCI6...",
"registered": true,
"refreshToken": "APZUo0...",
"expiresIn": "3600"
}
```
---
### Clerk API
Provider: Clerk
Base URL: https://api.clerk.com/v1
Docs: https://clerk.com/docs
Auth type: Bearer Token
Auth example: Authorization: Bearer sk_live_...
Has free tier: Yes
Starting at: Pay per use
Free quota: 10,000 MAU free forever
Rate limit: 100 requests/10 sec
Tags: authentication, user-management, oauth, sessions, organizations, nextjs, react
Description: Clerk provides a complete authentication and user management solution with pre-built React components, Next.js middleware, and a Backend API. Handle sign-up/sign-in with email, password, magic links, OAuth (Google, GitHub, etc.), and passkeys. Manage user profiles, organizations, roles, and sessions. The Backend API lets you read and manage users, create tokens, impersonate users, and configure security policies.
Auth: Use your Clerk Secret Key (starts with sk_) as a Bearer token for Backend API requests. The Publishable Key is for frontend SDKs.
Pricing: Free: 10k MAU, all core auth features. Pro $25/mo: includes 10k MAU + $0.02/additional MAU, organizations, custom domains, MFA. Enterprise: custom.
Endpoints:
GET /users List users with filtering and search
GET /users/{userId} Get a specific user's full profile
PATCH /users/{userId} Update user metadata or profile fields
DELETE /users/{userId} Delete a user and all their sessions
POST /users/{userId}/ban Ban a user from signing in
GET /sessions List active sessions across all users
GET /organizations List organizations in your application
Sample request:
```bash
curl "https://api.clerk.com/v1/users?limit=5&order_by=-created_at" \
-H "Authorization: Bearer $CLERK_SECRET_KEY"
```
Sample response:
```json
{
"data": [{
"id": "user_2abc123",
"email_addresses": [{"email_address": "alice@example.com"}],
"first_name": "Alice",
"last_name": "Chen",
"created_at": 1704067200000,
"last_sign_in_at": 1710000000000,
"public_metadata": {}
}],
"total_count": 842
}
```
---
### Okta API
Provider: Okta
Base URL: https://{yourOktaDomain}/api/v1
Docs: https://developer.okta.com/docs/reference/
Auth type: API Key Header
Auth example: Authorization: SSWS YOUR_API_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: Developer free tier
Rate limit: 1,000 requests/min (default) · Varies by endpoint
Tags: sso, saml, oidc, provisioning, mfa, enterprise, identity, zero-trust
Description: Okta is the enterprise identity platform, and its Management API exposes full control over user lifecycle, group membership, application assignments, authentication policies, MFA factors, API tokens, and SSO/SAML/OIDC integrations. The API uses a REST architecture and supports event hooks for real-time identity events. Used by IT teams, security engineers, and SaaS developers to automate provisioning, deprovisioning, and compliance workflows.
Auth: Create an API token in Okta Admin Console → Security → API. Pass it in the Authorization header prefixed with "SSWS".
Pricing: Developer: free for 100 MAU. Workforce: from $2/user/mo. Customer Identity: from $0.05/MAU. Enterprise: custom.
Endpoints:
GET /users List users with filtering and search
POST /users Create and optionally activate a user
GET /users/{userId} Get a specific user by ID or login
POST /users/{userId}/lifecycle/activate Activate a user account
GET /groups List groups and their membership
GET /apps List all app integrations in your org
Sample request:
```bash
curl "https://mycompany.okta.com/api/v1/users?limit=5&filter=status+eq+%22ACTIVE%22" \
-H "Authorization: SSWS $OKTA_API_TOKEN" \
-H "Accept: application/json"
```
Sample response:
```json
[{
"id": "00u1gNFGB8xZjMn4Y1d8",
"status": "ACTIVE",
"profile": {
"firstName": "Alice",
"lastName": "Chen",
"email": "alice@company.com",
"login": "alice@company.com"
},
"created": "2023-01-15T10:00:00.000Z"
}]
```
---
### Authentiq API
Provider: Authentiq
Base URL: https://6-dot-authentiqio.appspot.com
Docs: http://authentiq.io/support
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: auth, 6-dot-authentiqio
Description: Strong authentication, without the passwords.
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
DELETE /key Revoke an Authentiq ID using email & phone.
If called with `email` and `phone`
POST /key Register a new ID `JWT(sub, devtoken)`
v5: `JWT(sub, pk, devtoken, ...)`
See:
DELETE /key/{PK} Revoke an Identity (Key) with a revocation secret
GET /key/{PK} Get public details of an Authentiq ID.
POST /key/{PK} update properties of an Authentiq ID.
(not operational in v4; use PUT for now)
PUT /key/{PK} Update Authentiq ID by replacing the object.
v4: `JWT(sub,email,phone)` to bind
POST /login push sign-in request
See: https://github.com/skion/authentiq/wiki/JWT-Examples
POST /scope scope verification request
See: https://github.com/skion/authentiq/wiki/JWT-Exam
Sample request:
```bash
curl -X GET 'https://6-dot-authentiqio.appspot.com/key' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Flight Offers Search
Provider: Flight Offers Search
Base URL: https://api.amadeus.com/v2
Docs: https://test.api.amadeus.com/v2
Auth type: OAuth 2.0
Auth example: Authorization: Bearer YOUR_ACCESS_TOKEN
Has free tier: Yes
Starting at: Free tier available
Free quota: Free test environment with synthetic data
Rate limit: 100 calls/sec (production); varies by API
Tags: auth, travel, flights, hotels, booking, entertainment
Description: Before using this API, we recommend you read our Authorization Guide for more information on how to generate an access token.
Please also be aware that our test environment is based on a subset of the production, if
Auth: OAuth 2.0 Client Credentials — exchange API key + secret for access token
Pricing: Test environment: free with synthetic data. Production: pay-as-you-go per API call. Flight search: ~$0.005/call. Volume discounts available.
Endpoints:
GET /shopping/flight-offers Return list of Flight Offers based on searching criteria.
POST /shopping/flight-offers Return list of Flight Offers based on posted searching criteria.
Sample request:
```bash
curl -X GET 'https://test.api.amadeus.com/v2/shopping/flight-offers' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Apacta
Provider: Apacta
Base URL: https://app.apacta.com/api/v1
Docs: https://app.apacta.com/api/v1
Auth type: API Key Header
Auth example: X-Auth-Token: YOUR_API_KEY
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: auth, apacta
Description: API for a tool to craftsmen used to register working hours, material usage and quality assurance.
Endpoint
The endpoint https://app.apacta.com/api/v1 should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https).
Authentication
URL query authentic
Auth: API key in the request header (X-Auth-Token)
Pricing: Paid. Construction project management SaaS. Pricing from DKK 199/user/mo.
Endpoints:
GET /activities Get a list of activities
POST /activities Create an activity
DELETE /activities/bulkDelete Bulk delete activities
DELETE /activities/{activity_id} Delete an activity
PUT /activities/{activity_id} Edit an activity
GET /cities Get list of cities supported in Apacta
GET /cities/{city_id} Get details about one city
GET /clocking_records Get a list of clocking records
Sample request:
```bash
curl -X GET 'https://app.apacta.com/api/v1/activities' \
-H 'X-Auth-Token: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### ART19 Content API Documentation
Provider: ART19 Content API Documentation
Base URL: https://art19.com
Docs: https://art19.com
Auth type: API Key Header
Auth example: Authorization: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: auth, art19
Description: The ART19 Content API conforms to the JSON:API specification.
API requests MUST use the HTTP Accept header:
Accept: application/vnd.api+json
API requests MUST be authenticated using the HTTP Authorization header:
`Authorization: Token token="your-token", credentia
Auth: API key in the request header (Authorization)
Pricing: Free with ART19 publisher account. Podcast hosting and distribution API.
Endpoints:
GET /classification_inclusions Get ClassificationInclusion records
GET /classification_inclusions/{id} Get a specific classification inclusion
GET /classifications Get a list of classifications
GET /classifications/{id} Get a specific classification
GET /credits Get a list of credits
GET /credits/{id} Get a specific credit
GET /episodes Get a list of episodes
GET /episodes/{id} Get a specific episode
Sample request:
```bash
curl -X GET 'https://art19.com/classification_inclusions' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Authentiq Connect API
Provider: Authentiq Connect
Base URL: https://connect.authentiq.io
Docs: https://www.authentiq.com/
Auth type: API Key Header
Auth example: Authorization: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: auth, authentiq
Description: Authentiq Connect OAuth 2.0 and OpenID Connect API reference.
Learn about Authentiq ID or check out the Authentiq Connect developer documentation.
Auth: API key in the request header (Authorization)
Pricing: Free tier available. Passwordless authentication OpenID Connect provider.
Endpoints:
GET /authorize Authenticate a user
GET /client List clients
POST /client Register a client
DELETE /client/{client_id} Delete a client
GET /client/{client_id} View a client
PUT /client/{client_id} Update a client
POST /token Obtain an ID Token
GET /userinfo Retrieve a user profile
Sample request:
```bash
curl -X GET 'https://connect.authentiq.io/authorize' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Avaza API Documentation
Provider: Avaza API Documentation
Base URL: https://api.avaza.com
Docs: https://api.avaza.com
Auth type: OAuth 2.0
Auth example: Authorization: Bearer For all calls, supply your API key. Sign up to obtain the key.
Our API supports both unencrypted (HTTP) and encrypted (HTTPS) protocols.
Auth: API key as a query parameter (user_key)
Pricing: Free: 1,000 req/month. Professional plans available. Czech/English NLP.
Endpoints:
GET /account Information about current user account
GET /s1/correction Performs text correction (diacritization) on the given document
POST /s1/correction Performs text correction (diacritization) on the given document
GET /s1/entities Performs named-entity recognition on the given document
POST /s1/entities Performs named-entity recognition on the given document
GET /s1/lemmatize Performs lemmatization on the given document
POST /s1/lemmatize Performs lemmatization on the given document
GET /s1/sentiment Performs sentiment analysis on the given document
Sample request:
```bash
curl -X GET 'https://api.geneea.com//account' \
-H 'GET /endpoint?user_key=YOUR_KEY'
```
Sample response:
```json
{}
```
---
### GlobalWineScore API Documentation
Provider: GlobalWineScore API Documentation
Base URL: https://api.globalwinescore.com
Docs: https://api.globalwinescore.com
Auth type: API Key Header
Auth example: Authorization: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: 10 req/day (free)
Tags: auth, globalwinescore
Description: The GlobalWineScore API is designed as a RESTful API, providing several resources and methods depending on your usage plan.
For further information please refer to our plans.
Authentication
The API uses token-based authenticat
Auth: API key in the request header (Authorization)
Pricing: Free: 10 req/day. Paid from $50/mo for bulk wine score access.
Endpoints:
GET /globalwinescores/ List all historical GWS
GET /globalwinescores/latest/ List all latest GWS
Sample request:
```bash
curl -X GET 'https://api.globalwinescore.com/globalwinescores/' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Firebase Cloud Messaging API
Provider: Firebase Cloud Messaging
Base URL: https://fcm.googleapis.com/
Docs: https://google.com
Auth type: OAuth 2.0
Auth example: Authorization: Bearer Security Token Service (STS) enables you to request temporary, limited-privilege credentials for Identity and Access Management (IAM) users or for users that you authenticate (federated users). This guide provides descriptions of the STS API. For more information about using this service, see
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: entertainment, etmdb
Description: The Ethiopian Movie Database
Auth: OAuth 2.0 — obtain an access token via the authorization flow
Pricing: Free and open. Ethiopian Movie Database REST API; community maintained.
Endpoints:
GET /api/v1/cinema-detail/search/{cinema_name} Return cinema details search result
GET /api/v1/cinema-schedule/search/{movie_title} Return cinema schedule search result
GET /api/v1/cinema-schedule/searchall/{param} Return cinema schedule search result
GET /api/v1/cinema-shedule-showtime/search/{movie_title} Return cinema schedule and showtime search result
GET /api/v1/cinema-shedule-showtime/searchall/{param} Return cinema schedule and showtime search result
GET /api/v1/cinema/search/{id} Return cinema search result
GET /api/v1/company-credits/search/{movie_title} Return company credits search result
GET /api/v1/company-credits/searchall/{param} Return company credits search result
Sample request:
```bash
curl -X GET 'https://etmdb.com/api/v1/cinema-detail/search/{cinema_name}' \
-H 'Authorization: Bearer This is an API for accessing information about bicycling related incidents. You can find the source code on GitHub. Taxrates.io is a global tax rate service that automates the management of monitoring tax rates changes in 181 countries. We monitor over 14,000 US sales tax, VAT, GST rates for you and make updates via our API so you always have the most update tax rates. You can use
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /v1/tax/countrycode Tax rates by Country Code
GET /v1/tax/ip Tax rates by IP address
GET /v3/tax/rates All tax rates
Sample request:
```bash
curl -X GET 'https://api.taxrates.io/api/v1/tax/countrycode' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Hardware Sentry TrueSight Presentation Server REST API
Provider: Hardware Sentry TrueSight Presentation Server REST
Base URL: http://truesight.local
Docs: https://community.bmc.com/s/group/0F93n000000PlUtCAK/sentry-software
Auth type: API Key Header
Auth example: Cookie: YOUR_API_KEY
Has free tier: No
Starting at: Free tier available
Free quota: 10k performance units
Rate limit: See documentation
Tags: developer, truesight
Description: Hardware Sentry TrueSight Presentation Server REST API
Auth: API key in the request header (Cookie)
Pricing: Free: 5k errors/mo. Team: $26/mo (50k errors). Business: $80/mo (90k errors). Enterprise: custom. Self-hosted: free (open source).
Endpoints:
POST /hardware/actions/{deviceId}/collect-now Triggers a new collect on a specific device.
POST /hardware/actions/{deviceId}/rediscover Triggers a new discovery on a specific device.
POST /hardware/actions/{deviceId}/reinitialize Sends a 'Reinitialize KM' command.
POST /hardware/actions/{deviceId}/remove Removes a specific instance from the monitoring environment.
POST /hardware/actions/{deviceId}/reset-error-count Resets the Error Count parameter.
GET /hardware/applications Gets summarized information about all monitored applications.
GET /hardware/applications/{applicationId} Gets detailed information for a specific application.
GET /hardware/device-monitors/{deviceId} Gets the Monitors for a specific device.
Sample request:
```bash
curl -X GET 'http://truesight.local/hardware/actions/{deviceId}/collect-now' \
-H 'Cookie: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Fitbit Plus API
Provider: Fitbit Plus
Base URL: https://api.twinehealth.com/pub
Docs: https://api.twinehealth.com/pub
Auth type: OAuth 2.0
Auth example: Authorization: Bearer The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub. Remember that you must set your AWS Migration Hub home region before you call any of these AP
Auth: API key in the request header (Authorization)
Pricing: Free. AWS Migration Hub has no additional charges; you pay for underlying services used.
Endpoints:
POST /#X-Amz-Target=AWSMigrationHub.AssociateCreatedArtifact Associates a created artifact of an AWS cloud resource, the target receiving
POST /#X-Amz-Target=AWSMigrationHub.AssociateDiscoveredResource Associates a discovered resource ID from Application Discovery Service with a mi
POST /#X-Amz-Target=AWSMigrationHub.CreateProgressUpdateStream Creates a progress update stream which is an AWS resource used for access contro
POST /#X-Amz-Target=AWSMigrationHub.DeleteProgressUpdateStream Deletes a progress update stream, including all of its tasks, which was previ
POST /#X-Amz-Target=AWSMigrationHub.DescribeApplicationState Gets the migration status of an application.
POST /#X-Amz-Target=AWSMigrationHub.DescribeMigrationTask Retrieves a list of all attributes associated with a specific migration task.
POST /#X-Amz-Target=AWSMigrationHub.DisassociateCreatedArtifact Disassociates a created artifact of an AWS resource with a migration task per
POST /#X-Amz-Target=AWSMigrationHub.DisassociateDiscoveredResource Disassociate an Application Discovery Service discovered resource from a migrati
Sample request:
```bash
curl -X GET 'http://mgh.{region}.amazonaws.com/#X-Amz-Target=AWSMigrationHub.AssociateCreatedArtifact' \
-H 'Authorization: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Account API
Provider: Account
Base URL: https://api.ebay.com{basePath}
Docs: https://api.ebay.com{basePath}
Auth type: OAuth 2.0
Auth example: Authorization: Bearer
Take the API for a test drive. Just click on the Authorize button below and authenticate.
You can access our demo company profile if you are not a customer, or
Auth: OAuth 2.0 or JWT (Server Authentication) for machine-to-machine
Pricing: Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom.
Endpoints:
GET /consumer/v1/appointments Get Appointments
POST /consumer/v1/appointments Create Appointment
GET /consumer/v1/appointments/bookingfields Get Custom Fields Labels
GET /consumer/v1/appointments/customfields Get Custom Fields List
DELETE /consumer/v1/appointments/{id} Delete Appointment
GET /consumer/v1/appointments/{id} Get Appointment
PUT /consumer/v1/appointments/{id}/book Book Appointment
PUT /consumer/v1/appointments/{id}/cancel Cancel Appointment
Sample request:
```bash
curl -X GET 'https://sandbox-api.onsched.com//consumer/v1/appointments' \
-H 'Authorization: Bearer BatchPutAttributes operation creates or replaces attributes
POST /#Action=BatchPutAttributes BatchPutAttributes operation creates or replaces attributes
GET /#Action=CreateDomain CreateDomain operation creates a new domain. The domain nam
POST /#Action=CreateDomain CreateDomain operation creates a new domain. The domain nam
GET /#Action=DeleteAttributes
API Security & Authentication
Authentication options include OAuth2 Implicit and Authorization Code flows, and Personal Access Token. All connections should be encrypted over SSL/TLS
You
Auth: OAuth 2.0 — obtain an access token via the authorization flow
Pricing: Free: up to 10 users on Free plan. Pro $9.95/user/mo. Project management and invoicing.
Endpoints:
POST /ScheduleSeries/AddBooking Create new Schedule Booking
POST /ScheduleSeries/AddLeave Create new Leave Booking
PUT /ScheduleSeries/EditBooking Edit Booking
PUT /ScheduleSeries/EditLeave Edit Leave Booking
GET /api/Account Account Details
GET /api/Bill Gets list of Bills
POST /api/Bill Create a new draft Bill
GET /api/Bill/{id} Gets a Bill by Bill ID
Sample request:
```bash
curl -X GET 'https://api.avaza.com/ScheduleSeries/AddBooking' \
-H 'Authorization: Bearer Authentication
*
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /categories.json Retrieve all Categories.
POST /categories.json Create a new Category.
GET /categories/count.json Count all Categories.
DELETE /categories/{id}.json Delete an existing Category.
GET /categories/{id}.json Retrieve a single Category.
PUT /categories/{id}.json Modify an existing Category.
GET /checkout_custom_fields.json Retrieve all Checkout Custom Fields.
POST /checkout_custom_fields.json Create a new CheckoutCustomField.
Sample request:
```bash
curl -X GET 'https://api.jumpseller.com/v1/categories.json' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### KumpeApps API
Provider: KumpeApps
Base URL: https://restapi.kumpeapps.com/{version}
Docs: https://restapi.kumpeapps.com/{version}
Auth type: API Key Header
Auth example: X-Auth: YOUR_API_KEY
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: auth, kumpeapps
Description: KKid API. Due to security concerns all calls to this API requires authentication. If you have access then you may use your KumpeApps username/password to authenticate. To gain access please use the contact developer link below.
Auth: API key in the request header (X-Auth)
Pricing: Free with developer account. Mobile app utilities and tools API.
Endpoints:
PATCH /appkey Compromise app key
POST /appkey Request app key
PUT /appkey Deactivate app key
PATCH /authentication/appkey Compromise app key
POST /authentication/appkey Request app key
PUT /authentication/appkey Deactivate app key
GET /authentication/authkey Request auth key for user (login user)
PATCH /authentication/authkey Compromise auth key
Sample request:
```bash
curl -X GET 'https://restapi.kumpeapps.com/{version}/appkey' \
-H 'X-Auth: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### link.fish API
Provider: link.fish
Base URL: https://api.link.fish/
Docs: https://link.fish/api
Auth type: API Key Header
Auth example: Authorization: Bearer YOUR_API_KEY
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on plan
Tags: auth, link
Description: API to easily extract data from websites.
Base URL
All URLs referenced in the documentation have the following base:
``
https://api.link.fish
``
The REST API is only served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.
Authentication
HTTP requests to the REST
Auth: API key authentication (see docs for format)
Pricing: Paid. Web data extraction and structured data API. Plans from $29/mo.
Endpoints:
GET /Urls/apps Get mobile apps
GET /Urls/browser-data Extract data (browser)
GET /Urls/browser-screenshot Generate screenshot (browser)
GET /Urls/data Extract data
GET /Urls/data-raw Return data of JSON/XML
GET /Urls/data-tabular Return tabular data
GET /Urls/geo-coordinates Get geo coordinates
GET /Urls/social-media Get social media accounts
Sample request:
```bash
curl -X GET 'https://api.link.fish//Urls/apps' \
-H 'Authorization: Bearer YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Tradeworks
Provider: Tradeworks
Base URL: http://devui.magick.nu/rest
Docs: http://devui.magick.nu/rest
Auth type: none
Auth example: # No auth required
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: See documentation
Tags: auth, magick
Description: Authentication is required to access all methods of the API. Enter username and password.
Credentials are automatically set as you type.
Auth: No authentication required
Pricing: Free — open public API, no authentication required.
Endpoints:
GET /strategies/strategyId/{strategyId} Get Strategy by ID
GET /strategies/templates Get all Template Strategies
POST /tradingAccounts Add a Trading Account
PUT /tradingAccounts/password/{username}/{brokerserver}/{mt4username} Update MT4 Account Password
POST /users Create a new Tradeworks User
GET /users/email/{email} Check if email is available
PUT /users/password/{username} Update user's password
GET /users/username/{username} Check if username is available
Sample request:
```bash
curl -X GET 'http://devui.magick.nu/rest/strategies/strategyId/{strategyId}' \
-H '# No auth required'
```
Sample response:
```json
{}
```
---
### Labs64 NetLicensing RESTful API Test Center
Provider: Labs64 NetLicensing RESTful API Test Center
Base URL: https://go.netlicensing.io/core/v2/rest
Docs: https://go.netlicensing.io/core/v2/rest
Auth type: Basic Auth
Auth example: Authorization: Basic BASE64(username:password)
Has free tier: Yes
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Not officially published
Tags: auth, netlicensing
Description: The Labs64 NetLicensing RESTful API gives you access to NetLicensing’s core features.
Authentication
You authenticate to the NetLicensing API by providing your account credentials or simply use our d
Auth: HTTP Basic Auth — base64-encoded username:password
Pricing: Free: up to 10 licensees. Paid from €19/mo. Software license management API.
Endpoints:
GET /license List Licenses
POST /license Create License
DELETE /license/{licenseNumber} Delete License
GET /license/{licenseNumber} Get License
POST /license/{licenseNumber} Update License
GET /licensee List Licensees
POST /licensee Create Licensee
DELETE /licensee/{licenseeNumber} Delete Licensee
Sample request:
```bash
curl -X GET 'https://go.netlicensing.io/core/v2/rest/license' \
-H 'Authorization: Basic BASE64(username:password)'
```
Sample response:
```json
{}
```
---
### Paylocity API
Provider: Paylocity
Base URL: https://api.paylocity.com/api
Docs: https://api.paylocity.com/api
Auth type: OAuth 2.0
Auth example: Authorization: Bearer
The root API endpoint is https://api.byautomata.
Auth: API key in the request header (x-api-key)
Pricing: Paid market intelligence API. Pricing on request for business/enterprise plans.
Endpoints:
GET /contentpro-search Send search terms to receive the most relevant articles and companies.
POST /contentpro-similar-text The /contentpro-similar-text endpoint accepts and arbitrary piece of text and returns similar articles and blogs written by companies.
GET /search Send search terms to receive the most relevant companies along with text snippets.
GET /similar Send a company website to receive a list of companies related to them.
Sample request:
```bash
curl -X GET 'https://api.byautomata.io/contentpro-search' \
-H 'x-api-key: YOUR_API_KEY'
```
Sample response:
```json
{}
```
---
### Dataflow Kit Web Scraper
Provider: Dataflow Kit Web Scraper
Base URL: https://api.dataflowkit.com/v1
Docs: https://dataflowkit.com/
Auth type: API Key Header
Auth example: GET /endpoint?api_key=YOUR_KEY
Has free tier: No
Starting at: Enterprise / contact sales
Free quota: None
Rate limit: Based on plan
Tags: developer, dataflowkit
Description: Render Javascript driven pages, while we internally manage Headless Chrome and proxies for you.
- Build a custom web scraper with our Visual point-and-click toolkit.
- Scrape the most popular Search engines result pages (SERP).
- Convert web pages to PDF and capture screenshots.
*
Authentica
Auth: API key as a query parameter (api_key)
Pricing: Pay-as-you-go web scraping. From $15/mo (100K pages). API + no-code tools.
Endpoints:
POST /convert/url/pdf Save web page as PDF
POST /convert/url/screenshot Capture web page Screenshots.
POST /fetch Download web page content
POST /parse Extract structured data from web pages
POST /serp Collect search results from search engines
Sample request:
```bash
curl -X GET 'https://api.dataflowkit.com/v1/convert/url/pdf' \
-H 'GET /endpoint?api_key=YOUR_KEY'
```
Sample response:
```json
{}
```
---
### Enode API
Provider: Enode
Base URL: https://api.test.enode.io/
Docs: https://api.test.enode.io/
Auth type: OAuth 2.0
Auth example: Authorization: Bearer Introduction
For detai
Auth: OAuth 2.0 — obtain an access token via the authorization flow
Pricing: Freemium. Free tier available; pricing depends on account type and usage.
Endpoints:
GET /advertising_eligibility This method allows developers to check the seller eligibility status for eBay ad
GET /custom_policy/ This method retrieves the list of custom policies specified by the policy_typ
POST /custom_policy/ This method creates a new custom policy in which a seller specifies their terms
GET /custom_policy/{custom_policy_id} This method retrieves the custom policy specified by the custom_policy_id
PUT /custom_policy/{custom_policy_id} This method updates an existing custom policy specified by the custom_policy_
GET /fulfillment_policy This method retrieves all the fulfillment policies configured for the marketplac
POST /fulfillment_policy/ This method creates a new fulfillment policy where the policy encapsulates selle
GET /fulfillment_policy/get_by_policy_name This method retrieves the details for a specific fulfillment policy. In the requ
Sample request:
```bash
curl -X GET 'https://api.ebay.com{basePath}/advertising_eligibility' \
-H 'Authorization: Bearer
Retrieves the authenticated user'
Auth: OAuth 2.0 — obtain an access token via the authorization flow
Pricing: Freemium. Identity service pricing varies by provider; many offer free tiers.
Endpoints:
GET /user/ This method retrieves the account profile information for an authenticated user,
Sample request:
```bash
curl -X GET 'https://apiz.ebay.com{basePath}/user/' \
-H 'Authorization: Bearer