Wanted Ad Provider

1https://intelliwriter.io/api/ad?Job_title=frontend developer&company_name=google&l

API Name

Help Wanted Ad Generator

Description

This API is designed to automatically generate help wanted ads for job postings based on three input parameters: Job Title, Company Name, and Location. It's a useful tool for recruiters and businesses looking to create engaging and informative job ads to attract potential candidates.

Endpoint

/ad

HTTP Method

GET

Parameters

  • Job_title (string) The title of the job you're advertising.
  • Company_name (string) The name of the hiring company.
  • Location (string) The location where the job is based.

Example Request

POST /ad
1{
2     "Job_title": "Software Developer" 
3     "Company_name": "Tech Innovators Inc." 
4     "Location": "San Francisco, CA" 
5}

Response Fields

  • help_waanted_ad (string) The generated help wanted ad based on the provided Job Title, Company Name, and Location.

Status Code

  • 200 OK: The help wanted ad were successfully generated.
  • 400 Bad Request: If the request is missing any of the required parameters.

Usage

  • Send a POST request to the /ad endpoint with the 'Job_title,' 'Company_name,'' and 'Location' parameters containing the relevant information for your job ad.
  • The API will process the request and return a generated help wanted ad that you can use to attract potential candidates to your job posting.

This API simplifies the process of creating compelling job ads, helping you reach and engage with a broader pool of candidates for your job openings.

1const fetch = require('node-fetch'); // For Node.js 
2 const api_key = 'your_api_key'; 
3 const url = 'https://intelliwriter.io/api/ad'; 
4 const data = {
5     "Job_title": "Software Developer" 
6     "Company_name": "Tech Innovators Inc." 
7     "Location": "San Francisco, CA" 
8}; 
9 fetch(url, { 
10   method: 'POST', 
11   headers: { 
12     'Authorization': `Bearer ${api_key}`, 
13     'Content-Type': 'application/json', 
14   }, 
15   body: JSON.stringify(data), 
16 }) 
17 .then(response => response.json()) 
18 .then(result => console.log(result));
Logo

Intelliwriter is an AI-powered tool crafted to streamline and elevate your writing experience. Whether you're a content creator, marketer, student, or business owner, Intelliwriter is designed to transform and enhance your content creation process.

Intelliwriter.io © All rights reserved.