Adaptify SEO
Featured

Vibe Coder (Full-Stack AI/SEO) at Adaptify SEO

USD40,000+ • Remote (Worldwide)

HireQL API

Agent-native job search for AI assistants, MCP servers, and automation tools

Search 600+ remote vibe-coding jobs with structured filtering, rate-limiting, and usage tracking

Get Your API Key

Free tier: 100 requests/day • No credit card required

Quick Start

cURL

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://remotevibecodingjobs.com/api/v1/jobs?tech=React&vibe=async-first&limit=10"

JavaScript / Node.js

const response = await fetch(
  "https://remotevibecodingjobs.com/api/v1/jobs?tech=React&limit=10",
  {
    headers: {
      "Authorization": "Bearer YOUR_API_KEY"
    }
  }
);

const data = await response.json();
console.log(`Found ${data.jobs.length} jobs`);

Python

import requests

headers = {"Authorization": "Bearer YOUR_API_KEY"}
params = {"tech": "Python", "vibe": "remote-first", "limit": 10}

response = requests.get(
    "https://remotevibecodingjobs.com/api/v1/jobs",
    headers=headers,
    params=params
)

data = response.json()
print(f"Found {len(data['jobs'])} jobs")

API Endpoints

Base URL: https://remotevibecodingjobs.com/api/v1

GET
/jobs

Search jobs with filters: q, tech, vibe, level, salary, job_type, etc.

GET
/jobs/:id

Get full job details including description and requirements

GET
/stats

Aggregate job market statistics

No auth required
GET
/tech-tags

List all available tech stack tags with counts

No auth required
GET
/vibe-tags

List all available culture/vibe tags with counts

No auth required
POST
/keys

Create a new API key (public signup)

No auth required

Search Parameters

q

Full-text search (title, company, description)

tech

Tech stack filter (array, OR match)

vibe

Vibe/culture tags (array, OR match)

level

Experience level (Junior, Mid, Senior, etc.)

min_salary / max_salary

Salary range (USD, annual)

min_vibe_score

Minimum vibe score (0-100)

sort / order

Sort by posted_at, vibe_score, or salary

limit / offset

Pagination (max 50 per page)

Rate Limits

TierDaily RequestsPrice
Free100$0
Starter1,000Coming soon
Pro10,000Coming soon

Rate limit resets daily at midnight UTC. Headers: X-RateLimit-Limit, X-RateLimit-Remaining

🔌 MCP Server

Search remote dev jobs directly from Claude Desktop, Cursor, Cline, or any MCP-compatible client. Three tools available: search_jobs, get_job, and job_market_stats.

Setup for Claude Desktop

Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "remote-vibe-jobs": {
      "command": "npx",
      "args": ["rvcj-mcp-server"],
      "env": {
        "RVCJ_API_KEY": "your-api-key"
      }
    }
  }
}

Setup for Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "remote-vibe-jobs": {
      "command": "npx",
      "args": ["rvcj-mcp-server"],
      "env": {
        "RVCJ_API_KEY": "your-api-key"
      }
    }
  }
}

Available Tools

search_jobs

Search 630+ remote jobs by tech stack, vibe tags, salary, experience level, and vibe score

get_job

Get full details for a specific job including complete description

job_market_stats

Aggregate stats: job counts by tech, level, vibe, and salary ranges

Example Prompts

“Find me remote React jobs paying over $120k with async-first culture”

“What does the remote dev job market look like right now?”

“Show me AI-native Python jobs for senior engineers”

Support & Resources