Welcome to the Jungle Solutions API
  • Introduction
  • 🔓Authentication
  • 🔭Scopes
  • 🏷️Errors and Status
  • Jobs API
    • Jobs
      • Jobs dependencies
        • Languages
        • List available professions
      • List all jobs
      • List organization's jobs
      • Retrieve a job
      • Create a job
      • Update a job
      • Update a job status
    • Departments
      • List departments
      • Create a department
      • Update a department
      • Retrieve a department
    • Offices
      • List offices
      • Create an office
      • Update an office
      • Retrieve an office
  • Candidates API
    • Candidates
      • List candidates
      • Retrieve a candidate
      • Create a candidate
      • Update a candidate
    • Comment
    • Emails
      • List candidate emails
      • Create an email
    • Documents
      • List candidate documents
      • Attach documents to a candidate
    • Current user
  • Employer branding API
    • Organizations
      • Retrieve Organization's info
      • List organizations
    • Images
    • videos
    • Embed
    • Tools
    • Sectors
  • Analytics API
    • Moves
  • Media API
    • WTTJ articles
  • ⁉️FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Employer branding API

Tools

This endpoint lets you retrieve all tools of Welcome To The Jungle

This endpoint requires tools_r scope.

tools

GET https://www.welcomekit.co/api/v1/external/tools

Query Parameters

Name
Type
Description

per_page

integer

Number of jobs per page

page

integer

Page offset

name

string

Filter on name (search on name & alternative names)

[
    {
        "thumb_url": "https://welcomekit.co/img/aws.png",
        "tool_category": {
            "name": "Product Management",
            "reference": "pm",
            "id": 1
        },
        "alternative_names": "Aws Cloudfront, Cloudfront",
        "name": "Amazon Cloudfront",
        "id": 35
    },
    {
        "thumb_url": "https://welcomekit.co/img/js.png",
        "tool_category": {
            "name": "Front",
            "reference": "frontend",
            "id": 2
        },
        "alternative_names": "JS",
        "name": "Javascript",
        "id": 351
    }
  ...
]

Request example

curl -X GET -G "https://www.welcomekit.co/api/v1/external/tools" \
    -H "Authorization: Bearer WK_API_KEY"

curl -X GET -G "https://www.welcomekit.co/api/v1/external/tools" \
    -d "name=react"
    -H "Authorization: Bearer WK_API_KEY"
PreviousEmbedNextSectors

Last updated 3 years ago

Was this helpful?