Discover/Vodafone API
live

Vodafone APIjobs.vodafone.com

Access Vodafone job listings, similar roles, and skill insights via 4 endpoints. Filter by keyword, location, and sort order. Powered by the Eightfold platform.

Endpoint health
verified 16h ago
search_jobs
get_total_job_count
get_similar_positions
get_job_insights
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Vodafone API?

The Vodafone Jobs API exposes 4 endpoints for querying active Vodafone career listings sourced from jobs.vodafone.com, which runs on the Eightfold platform. Use search_jobs to run full-text searches across open positions with filters for keyword, location, and sort order, returning fields like department, workLocationOption, postedTs, and a direct positionUrl. Two additional endpoints surface similar roles and skill-relevance insights for any position ID.

Try it
Keyword to search for in job titles and descriptions.
Pagination offset in multiples of 10 (0, 10, 20, ...).
Sort order for results.
Location filter (city, country, etc.). Example: 'London, United Kingdom'.
api.parse.bot/scraper/f6305d3a-9a8c-48b7-aeac-e7a81293e2b2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f6305d3a-9a8c-48b7-aeac-e7a81293e2b2/search_jobs?query=engineer&start=0&sort_by=timestamp&location=London%2C+United+Kingdom' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace jobs-vodafone-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.vodafone_jobs_api import VodafoneJobs, Position, JobInsight, Sort

client = VodafoneJobs()

# Search for engineering positions sorted by relevance
for position in client.positions.search(query="engineer", sort_by=Sort.RELEVANCE):
    print(position.name, position.location, position.department, position.work_location_option)

    # Get skill insights for this position
    insight = position.insights.get()
    print(insight.skills, insight.titles)

    # Find similar positions
    for similar in position.similar():
        print(similar.name, similar.location, similar.posted_ts)
    break

# Count total positions matching a keyword
total = client.positions.count(query="data", location="London, United Kingdom")
print(total)
All endpoints · 4 totalmissing one? ·

Full-text search across all Vodafone job openings. Matches query against job titles and descriptions, filterable by location. Returns 10 positions per page; paginate via the start offset (multiples of 10). Each position includes department, work-location option (hybrid/onsite/remote), posting timestamp, and a URL path for the full listing.

Input
ParamTypeDescription
querystringKeyword to search for in job titles and descriptions.
startintegerPagination offset in multiples of 10 (0, 10, 20, ...).
sort_bystringSort order for results.
locationstringLocation filter (city, country, etc.). Example: 'London, United Kingdom'.
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of matching positions",
    "positions": "array of Position objects with id, name, location, department, displayJobId, postedTs, workLocationOption, positionUrl"
  },
  "sample": {
    "data": {
      "count": 376,
      "positions": [
        {
          "id": 563018696872286,
          "name": "ServiceNow Developer",
          "isHot": 0,
          "stars": 0,
          "atsJobId": "283704",
          "location": "Bucuresti, Romania",
          "postedTs": 1781125200,
          "locations": [
            "Bucuresti, Romania"
          ],
          "solrScore": null,
          "creationTs": 1779470823,
          "department": "Software Development #2",
          "positionUrl": "/careers/job/563018696872286",
          "displayJobId": "283704",
          "workLocationOption": "hybrid",
          "locationFlexibility": null,
          "standardizedLocations": [
            "Bucharest, Bucharest, RO"
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the Vodafone API

Search and Filter Job Listings

The search_jobs endpoint accepts optional query, location, sort_by, and start parameters, returning up to 10 positions per page. The start parameter takes multiples of 10 for pagination (0, 10, 20, …). Each position object includes id, name, location, department, displayJobId, postedTs, workLocationOption (hybrid, onsite, or remote), and a positionUrl for the full listing. The count field in the response tells you the total number of matches, allowing you to calculate how many pages exist.

Lightweight Count Queries

get_total_job_count accepts the same query and location filters as search_jobs but returns only a single total_count integer. This is useful when you need a current headcount of open roles — for example, tracking how many positions Vodafone is hiring for in a given city — without retrieving full position records.

Similar Positions and Job Insights

get_similar_positions takes a numeric job_id (from search_jobs results) and returns up to 10 related positions ranked by the Eightfold matching engine, using the same Position object shape. get_job_insights returns three dictionaries for a given job: skills maps skill names to integer relevance scores, titles maps comparable job titles to frequency counts, and experience_years maps experience-year brackets to counts. Together these give a market-context view of what a role actually demands relative to similar positions.

Reliability & maintenanceVerified

The Vodafone API is a managed, monitored endpoint for jobs.vodafone.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jobs.vodafone.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official jobs.vodafone.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
16h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track the total number of open Vodafone roles in a target country using get_total_job_count with a location filter
  • Build a job alert tool that polls search_jobs by keyword and surfaces newly posted positions via the postedTs field
  • Identify whether a role is remote, hybrid, or onsite by reading the workLocationOption field from search_jobs results
  • Discover adjacent opportunities by passing a position's id to get_similar_positions and listing related roles
  • Analyze which skills Vodafone values most for a given role using the skill-to-relevance-score mapping in get_job_insights
  • Map career pathways by comparing comparable titles and their frequency counts from the titles dict in get_job_insights
  • Aggregate department-level hiring volume by grouping search_jobs results by the department field across paginated responses
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Vodafone offer an official developer API for its jobs portal?+
Vodafone does not publish a public developer API for jobs.vodafone.com. The careers site runs on the Eightfold platform, which does not expose a documented public API for third-party use.
What does the workLocationOption field in search_jobs tell me?+
It indicates the work arrangement for the position — values include hybrid, onsite, and remote. This field is present on every Position object returned by both search_jobs and get_similar_positions, so you can filter or group results by work arrangement in your own application logic.
How does pagination work in search_jobs?+
Results are returned 10 per page. Use the start parameter with multiples of 10 (0, 10, 20, …) to step through pages. The response always includes a count field with the total number of matching positions, so you can compute the full page count before iterating.
Does the API return the full job description text for each position?+
The search_jobs and get_similar_positions endpoints return summary-level fields: id, name, location, department, displayJobId, postedTs, workLocationOption, and positionUrl. Full description text is not included in the response. You can fork this API on Parse and revise it to add an endpoint that retrieves full job description content for a given position.
Can I filter search_jobs results by department or work location type directly?+
The search_jobs endpoint currently supports filtering by query keyword and location only; there is no direct department or workLocationOption filter parameter. You can fork this API on Parse and revise it to add those filter parameters if your use case requires narrowing results by department or work arrangement.
Page content last updated . Spec covers 4 endpoints from jobs.vodafone.com.
Related APIs in JobsSee all →
totaljobs.com API
Search and browse job listings from across the UK on TotalJobs, then access detailed information about specific positions including requirements, salary, and application details. Quickly compare opportunities and find roles that match your criteria.
careers.dhl.com API
Search and filter job listings across DHL Group's global careers portal by keywords, location, and other criteria with easy pagination to browse through results. Find positions matching specific job titles and requirements across multiple searches.
cv.lv API
Search for job listings on CV.lv and access detailed job descriptions, categories, locations, and information about top employers. Find the right opportunity by browsing available positions across different industries and regions.
cvshealth.com API
Search and apply for CVS Health job openings across multiple categories, locations, and roles. Filter positions by keyword, category, or location to find relevant opportunities and get direct links to submit your application.
amazon.jobs API
Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.
apply.careers.microsoft.com API
Search Microsoft job openings by keywords and location, then view detailed information about positions including job descriptions and required qualifications. Easily browse available roles across Microsoft with filtering and pagination to find opportunities that match your career goals.
job.at API
Search and browse jobs on Austria's job.at platform, view detailed job listings with salary info and company details, and use autocomplete features to refine your search by location and keywords. Discover featured positions, explore job categories, and find related job titles to expand your career opportunities.
timesjobs.com API
Search and browse job listings from TimesJobs.com to find positions by role, category, and company, while discovering popular job roles, featured employers, and detailed job information. Filter opportunities using available facets and explore career statistics to match your skills with the right opportunities.