Interview Intel avatar

Interview Intel

Pricing

Pay per usage

Go to Apify Store
Interview Intel

Interview Intel

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Štěpán Škopek

Štěpán Škopek

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Interview Intel — AI Podcast Briefing for Job Interviews

Paste a LinkedIn job URL. Get a two-host podcast briefing in under 2 minutes.

Stack: Apify (scraping + orchestration) → Claude (script writing) → ElevenLabs (audio)

Quick Start

  1. Deploy this Actor to Apify (push via CLI or GitHub integration)
  2. Set environment variables in the Apify Console:
    • ANTHROPIC_API_KEY — your Claude API key
    • ELEVENLABS_API_KEY — your ElevenLabs API key
  3. Run the Actor with input:
    {
    "linkedinJobUrl": "https://www.linkedin.com/jobs/view/1234567890"
    }
  4. Results include audioUrl (direct link to the podcast MP3), keyFacts, and transcript.

Before First Run

Verify scraper actor slugs! The scrapers used are community Actors from the Apify Store. Open src/scrapers.js and verify each ACTORS.* slug exists and works by running them manually in the Apify Console.

Verify ElevenLabs voice IDs! Open src/elevenlabs.js and replace the VOICES.* IDs with voices from your ElevenLabs account.

Calling from a Frontend

Use the synchronous run endpoint (blocks until done, returns results):

POST https://api.apify.com/v2/acts/YOUR_USERNAME~interview-intel/run-sync-get-dataset-items?token=YOUR_TOKEN
Content-Type: application/json
{ "linkedinJobUrl": "https://www.linkedin.com/jobs/view/..." }

Response is a JSON array — take the first item for audioUrl, keyFacts, and transcript.