-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Kenneth Amanfo Junior edited this page Dec 8, 2017
·
4 revisions
This wiki is very immature and documents how to use the v- 0.0.1 of the codejobs api
Authentication currently supports all clients, as it uses tokens and sessions <3
To access all job listings
Here we go.
- Endpoint : https://codejobs.herokuapp.com/api/jobs/?format=json
- Allow: GET, POST, OPTIONS, HEAD
- Sample Response
[
{
"title": "Front End Developer",
"location": "Asgard St, Paris, France",
"company": "Thor Inc",
"job_description": "# About the role n r We’re looking to add a senior .NET developer to lead the
development of our Comparison Server and Desktop Compare products.\r\n\r\nWe prefer a remote hire, but
ired Expert knowledge of .NET, ...",
"application_link": "https://applyhere.com/33902",
"date_created": "2017-12-08"
},
{
"title": "Data Scientist",
"location": "Accra, Ghana",
"company": "Code Jobs",
"job_description": "We're looking for an experienced distributed systems/big data software engineer to
join our team. You'll take ownership of our crawl and data pipeline, architecting and implementing new
solutions, keeping them running with high uptime and scaling them up to handle load.\r\n\r\nExperience
writing good software is a must, and experience with distributed systems and big data is a huge plus -
we're looking for someone with good intuitiotests, practice peer code review, pair programming and
continuous deployment on all our code and systems. We love blue-green deployments and anything
immutable and we push very hard toward automation ...",
"application_link": "https://applyhere.com/8393392",
"date_created": "2017-12-08"
}
]
- Endpoint : https://codejobs.herokuapp.com/api/companies/?format=json
- Allow: GET, POST, HEAD, OPTIONS
- Sample Response
[
{
"name": "Thor Inc",
"user": "thorinc",
"short_description": "Thor Inc is the leading social network for healthcare professionals with over 70%
of U.S. doctors as members. We have strong revenues, profits, real market traction, and were putting a dent in
the inefficiencies of our $2.5 trillion U.S. healthcare system.",
"official_website": "https://thor.com",
"listings": [
"Front End Developer"
]
},
{
"name": "Code Jobs",
"user": "codejobs",
"short_description": "Code Jobs is the world's largest online open data api on jobs. We are growing
fast. We love good people",
"official_website": "https://codejobs.heroku.com",
"listings": [
"Data Scientist"
]
}
]
- Create a new company, note only a registered user can create a new company profile and only one.
- Use only valid URLs
- Sample Post
{
"name": "Apple Inc",
"short_description": "We make fancy phones in America",
"official_website": "https://apple.com",
}