Free overview of current job market - sample data from multiple sources
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get latest remote job listings from RemoteOK with filtering options
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 50,
"type": "number",
"minimum": 1,
"maximum": 100
},
"skill": {
"description": "Filter by skill/tag (e.g., \"react\", \"python\")",
"type": "string"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/remote-jobs/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Get latest German/EU job listings from Arbeitnow with filtering options
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 50,
"type": "number",
"minimum": 1,
"maximum": 100
},
"remoteOnly": {
"default": false,
"type": "boolean"
},
"skill": {
"description": "Filter by skill/tag",
"type": "string"
}
},
"required": [
"limit",
"remoteOnly"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/german-jobs/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1,
"remoteOnly": true
}
}
'
Analyze current skills demand from job listings - top skills, emerging trends
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 25,
"description": "Number of top skills to return",
"type": "number",
"minimum": 10,
"maximum": 50
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/skills-demand/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 10
}
}
'
Get salary ranges and insights from job postings with salary data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"skill": {
"description": "Filter by skill to see skill-specific salaries",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/salary-insights/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"skill": "<Filter by skill to see skill-specific salaries>"
}
}
'
Comprehensive job market report with trends, top companies, and hiring signals
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/market-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://job-market-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'