- Recipes
- Theirstack job postings to Airtable
Connect Theirstack job postings and Airtable in our serverless environment
Use this template to Search Theirstack job postings using them to create new records on Airtable table.
Share
Search Theirstack job postings
Used integrations:
- JavaScript
- Python
class HttpSourceTheirstackJobs {
async init() {
// TODO: Create your http credential with theirstack information:
// More info at https://yepcode.io/docs/integrations/http/#credential-configuration
// baseUrl: https://api.theirstack.com/v1
// HTTP Headers: { "Authorization": "Bearer <your-api-key>" }
this.httpClient = yepcode.integration.http("theirstack");
}
async fetch(publish, done) {
// TODO: Customize your request checking the API documentation:
// https://api.theirstack.com/#tag/Jobs
const payload = {
order_by: [{
desc: true,
field: "date_posted",
},
{
desc: true,
field: "discovered_at",
},
],
page: 0,
limit: 25,
company_name_or: [],
company_domain_or: [],
company_name_not: [],
company_name_partial_match_or: [],
company_name_partial_match_not: [],
company_description_pattern_or: [],
company_description_pattern_not: [],
company_description_pattern_accent_insensitive: false,
min_employee_count: null,
max_employee_count: null,
min_funding_usd: null,
max_funding_usd: null,
funding_stage_or: [],
industry_or: [],
industry_not: [],
company_tags_or: [],
company_type: "all",
company_investors_or: [],
company_investors_partial_match_or: [],
company_technology_slug_or: [],
company_technology_slug_not: [],
only_yc_companies: false,
company_location_pattern_or: [],
company_country_code_or: [],
company_country_code_not: [],
company_list_id_or: [],
company_list_id_not: [],
job_title_or: [],
job_title_not: [],
job_title_pattern_and: [],
job_title_pattern_or: [],
job_title_pattern_not: [],
job_country_code_or: [],
job_country_code_not: [],
posted_at_max_age_days: null,
posted_at_gte: null,
posted_at_lte: null,
discovered_at_max_age_days: null,
discovered_at_gte: null,
discovered_at_lte: null,
job_description_pattern_or: [],
job_description_pattern_not: [],
job_description_pattern_is_case_insensitive: true,
remote: null,
only_jobs_with_reports_to: false,
only_jobs_with_hiring_managers: false,
job_ids: [],
min_salary_usd: null,
max_salary_usd: null,
job_technology_slug_or: [],
job_technology_slug_not: [],
job_technology_slug_and: [],
job_location_pattern_or: [],
job_location_pattern_not: [],
scraper_name_pattern_or: [],
include_total_results: false,
group_by: [],
};
const {
data: {
data: jobs
},
} = await this.httpClient.post("jobs/search", payload);
for (const job of jobs) {
await publish(job);
}
done();
}
async close() {}
}
class HttpSourceTheirstackJobs:
def setup(self):
# TODO: Create your http credential with theirstack information:
# More info at https://yepcode.io/docs/integrations/http/#credential-configuration
# baseUrl: https://api.theirstack.com/v1
# HTTP Headers: { "Authorization": "Bearer <your-api-key>" }
self.session = yepcode.integration.http("your-http-theirstack-credential-name")
def generator(self):
# TODO: Customize your request checking the API documentation:
# https://api.theirstack.com/#tag/Jobs
response = self.session.post(
"jobs/search",
json={
"order_by": [
{
"desc": True,
"field": "date_posted",
},
{
"desc": True,
"field": "discovered_at",
},
],
"page": 0,
"limit": 25,
"company_name_or": [],
"company_domain_or": [],
"company_name_not": [],
"company_name_partial_match_or": [],
"company_name_partial_match_not": [],
"company_description_pattern_or": [],
"company_description_pattern_not": [],
"company_description_pattern_accent_insensitive": False,
"min_employee_count": None,
"max_employee_count": None,
"min_funding_usd": None,
"max_funding_usd": None,
"funding_stage_or": [],
"industry_or": [],
"industry_not": [],
"company_tags_or": [],
"company_type": "all",
"company_investors_or": [],
"company_investors_partial_match_or": [],
"company_technology_slug_or": [],
"company_technology_slug_not": [],
"only_yc_companies": False,
"company_location_pattern_or": [],
"company_country_code_or": [],
"company_country_code_not": [],
"company_list_id_or": [],
"company_list_id_not": [],
"job_title_or": [],
"job_title_not": [],
"job_title_pattern_and": [],
"job_title_pattern_or": [],
"job_title_pattern_not": [],
"job_country_code_or": [],
"job_country_code_not": [],
"posted_at_max_age_days": None,
"posted_at_gte": None,
"posted_at_lte": None,
"discovered_at_max_age_days": None,
"discovered_at_gte": None,
"discovered_at_lte": None,
"job_description_pattern_or": [],
"job_description_pattern_not": [],
"job_description_pattern_is_case_insensitive": True,
"remote": None,
"only_jobs_with_reports_to": False,
"only_jobs_with_hiring_managers": False,
"job_ids": [],
"min_salary_usd": None,
"max_salary_usd": None,
"job_technology_slug_or": [],
"job_technology_slug_not": [],
"job_technology_slug_and": [],
"job_location_pattern_or": [],
"job_location_pattern_not": [],
"scraper_name_pattern_or": [],
"include_total_results": False,
"group_by": []
}
)
response.raise_for_status()
jobs = response.json()["data"]
for job in jobs:
yield job
def close(self):
pass
Do you need help solving this integration with YepCode?
Let's talkCreate new records on Airtable table
Used integrations:
- JavaScript
- Python
class AirtableTargetCreateRecords {
async init() {
// TODO: Create your airtable credential
// More info at https://yepcode.io/docs/integrations/airtable/#credential-configuration
this.airtableClient = yepcode.integration.airtable(
"your-airtable-credential-name"
);
// TODO: Customize your base id and table id
// More info at https://support.airtable.com/docs/understanding-airtable-ids
this.table = this.airtableClient
.base("your-base-id")
.table("your-table-id");
}
async consume(item) {
await this.table.create({
// TODO: Customize item attributes mapping to record columns
id: `${item.id}`,
name: item.name,
});
}
async close() {}
}
Comming soon
We are releasing new Python recipes every week
FAQs
YepCode is a SaaS platform that enables the creation, execution and monitoring of integrations and automations using source code in a serverless environment.
We like to call it the Zapier for developers, since we bring all the agility and benefits of NoCode tools (avoid server provisioning, environment configuration, deployments,...), but with all the power of being able to use a programming language like JavaScript or Python.
These recipes are an excellent starting point for creating your own YepCode processes and solving complex integration and automation problems.
You only have to complete the sign up form and your account will be created with our FREE plan (no credit card required).
YepCode has been created with a clear enterprise focus, offering a multi-tenant environment, team management capabilities, high security and auditing standards, Identity Provider (IdP) integrations, and on-premise options. It serves as the Swiss army knife for engineering teams, especially those requiring the extraction or transmission of information to external systems. It excels in scenarios demanding flexibility and adaptability to change within the process.
Sure! You only need to configure YepCode servers to establish a connection with that service. Check our docs page to get more information.