← Marketplace
Base
Theaslangroupllc
Theaslangroupllc is an x402-native service at https://careerpulse.theaslangroupllc.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 11 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Career Certify Certification ROI analysis for job-seeker and career-coach agents. Returns which certs pay off most for a given role and goal, with salary lift and time to complete. | /m/bz-careerpulse-theaslangroupllc-com/api/career/certify | 0.08 USDC |
Career Interview Interview prep for job-seeker and career-coach agents. Returns company-specific questions, answer frameworks, and insider tips for any target role. | /m/bz-careerpulse-theaslangroupllc-com/api/career/interview | 0.1 USDC |
Career Layoff Layoff survival guide for job-seeker and career-coach agents. Returns an immediate checklist, severance negotiation tactics, and job-market intelligence. | /m/bz-careerpulse-theaslangroupllc-com/api/career/layoff | 0.08 USDC |
Career Negotiate Salary negotiation playbook for job-seeker and career-coach agents. Returns counter-offer strategy and exact scripts to raise an offer. | /m/bz-careerpulse-theaslangroupllc-com/api/career/negotiate | 0.1 USDC |
Career Outlook Industry outlook for job-seeker and career-coach agents. Returns growth or decline, top employers, and salary trends by sector. | /m/bz-careerpulse-theaslangroupllc-com/api/career/outlook | 0.08 USDC |
Career Remote Remote work intelligence for job-seeker and career-coach agents. Returns demand, top companies, and salary by location for a given role. | /m/bz-careerpulse-theaslangroupllc-com/api/career/remote | 0.08 USDC |
Career Resume Resume optimization for job-seeker and career-coach agents. Returns ATS keywords, formatting, and recruiter intelligence for a target role. | /m/bz-careerpulse-theaslangroupllc-com/api/career/resume | 0.1 USDC |
Career Resume Critique Resume critique with verbatim before/after bullet rewrites, ATS-compatibility flags, gaps vs target role, and country-specific format norms (US, UK, Germany, Australia, India). Submit real resume text via POST body or resume_text query param, 15k char cap. | /m/bz-careerpulse-theaslangroupllc-com/api/career/resume-critique | 0.25 USDC |
Career Salary Salary benchmarking for job-seeker and career-coach agents. Returns real compensation data by role, location, and experience level. | /m/bz-careerpulse-theaslangroupllc-com/api/career/salary | 0.1 USDC |
Career Skills Gap Skills gap analysis for job-seeker and career-coach agents. Returns exactly what skills are needed to reach a target role and how to close the gap. | /m/bz-careerpulse-theaslangroupllc-com/api/career/skills-gap | 0.1 USDC |
Career Transition Career pivot roadmap for job-seeker and career-coach agents. Returns a step-by-step plan to move from a current role into a target role. | /m/bz-careerpulse-theaslangroupllc-com/api/career/transition | 0.1 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-careerpulse-theaslangroupllc-com/api/career/certify')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-careerpulse-theaslangroupllc-com/api/career/certify # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …