Developer Portal & Public API
Machine-readable REST endpoints, OpenAPI 3.1 specifications, and agent integration tools for Hashtag Web3.
API Quickstart
All endpoints are free to use without an API key for up to 60 requests per minute. CORS is enabled globally for frontend and client-side applications.
cURL
# Search Solidity jobs
curl -X GET "https://hashtagweb3.com/api/jobs?search=Solidity&limit=5" \
-H "Accept: application/json"
# Fetch latest crypto news
curl -X GET "https://hashtagweb3.com/api/news?limit=10"TypeScript / JavaScript
const response = await fetch(
'https://hashtagweb3.com/api/jobs?tag=Ethereum&limit=10'
);
const { data, meta } = await response.json();
console.log(`Found ${meta.total} jobs:`, data);Python
import requests
url = "https://hashtagweb3.com/api/jobs"
params = {"search": "Auditor", "limit": 5}
res = requests.get(url, params=params).json()
for job in res["data"]:
print(job["title"], "at", job["company"])API Endpoints Reference
/api/jobsSearch and paginate verified Web3 job postings across engineering, DeFi, security, and growth.
Solidity, Rust)./api/newsReal-time aggregated crypto news headlines from top industry publications.
/api/eventsUpcoming crypto conferences, hackathons, developer summits, and community meetups worldwide.
conference | hackathon | meetup | online/api/glossary200+ technical blockchain definitions with clear explanations and category taxonomies.
DeFi, Consensus, Cryptography.Model Context Protocol (MCP) & Tool Calling
Autonomous AI agents (Claude Desktop, Cursor, ChatGPT, Antigravity) can connect directly to Hashtag Web3 using our OpenAPI schema or by executing standard HTTP GET requests.
// MCP Server configuration (mcp.json)
{
"mcpServers": {
"hashtagweb3": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://hashtagweb3.com/openapi.json"]
}
}
}