For Agents
Search jobs and companies inside a Getro talent network, retrieve contacts with notes, and import contact records for VC and accelerator portfolio platforms.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Getro Job Board and Network API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Getro Job Board and Network API.
Search jobs across a network filtered by job function, location, or company
Retrieve a network's member companies with their metadata and industry tags
List contacts in a network and attach notes to a contact's profile
Import a batch of contacts via POST /contacts/import
GET STARTED
Use for: Search for engineering jobs in Berlin across our portfolio network, List all companies in network 42 tagged 'fintech', Retrieve details for job 9876 in network 42, Get contact details for contact 1234 in our talent network
Not supported: Does not handle interview scheduling, candidate sourcing inboxes, or in-app messaging — use for talent-network jobs, companies, and contacts only.
Getro powers talent networks and job boards for venture capital firms, accelerators, and ecosystem operators that want to surface jobs from their portfolio companies in one place. The v2 API exposes 15 endpoints covering networks, member companies, job listings including removed-job audit, contact records with notes, and reference data for job functions, locations, and industry tags. It is the integration surface for embedding portfolio job feeds in member sites, exporting talent data for back-office reporting, and syncing contacts into a CRM.
Pull removed jobs to audit listings that have been taken down
Look up reference data such as job functions, locations, and industry tags for filter UIs
Patterns agents use Getro Job Board and Network API for, with concrete tasks.
★ VC portfolio job board
Venture firms aggregate every open role across portfolio companies into a single talent destination for their network. The API returns jobs filtered by function, location, and tag, so the firm's website renders a fresh, searchable feed without each company posting manually.
Fetch all jobs in network 42 with job_function 'engineering' and location 'San Francisco' and render them as a paginated list
Talent CRM sync
Operations teams keep their CRM in sync with the talent network's contact database, copying company affiliations and any notes captured during intros. The contacts endpoints support pagination and the import endpoint accepts batches, so the daily sync stays bounded even on large networks.
List contacts in network 42 modified in the last 24 hours and upsert each into the team's HubSpot CRM
Removed-listing compliance audit
Operators run periodic audits of jobs that have been removed to understand churn and ensure no archived role is still surfacing publicly. The /networks/{id}/jobs/removed endpoint returns the audit trail so a compliance report can be generated without manual scraping.
List removed jobs in network 42 between two dates and write a CSV with company, role, and removed_at
AI agent for portfolio talent matching
An AI agent connected through Jentic accepts a candidate's profile, queries Getro for jobs matching their function and location preferences, and returns a ranked shortlist. Jentic injects the bearer token so the agent never directly handles the network credential.
Given candidate skills 'python, ml' and location 'remote', search jobs in network 42 and return the top 10 ranked matches
15 endpoints — getro powers talent networks and job boards for venture capital firms, accelerators, and ecosystem operators that want to surface jobs from their portfolio companies in one place.
METHOD
PATH
DESCRIPTION
/networks
List talent networks
/networks/{id}/companies
List companies in a network
/networks/{id}/jobs
Search jobs in a network
/networks/{id}/jobs/removed
Audit removed job listings
/networks/{id}/contacts
Search contacts
/contacts/import
Import contacts in batch
/networks/{network_id}/contacts/notes
Create a contact note
/networks
List talent networks
/networks/{id}/companies
List companies in a network
/networks/{id}/jobs
Search jobs in a network
/networks/{id}/jobs/removed
Audit removed job listings
/networks/{id}/contacts
Search contacts
Three things that make agents converge on Jentic-routed access.
Credential isolation
Getro bearer tokens are stored encrypted in the Jentic vault. Agents receive a scoped reference and the raw token never enters the prompt or logs.
Intent-based discovery
Agents search by intent such as 'search portfolio jobs in San Francisco' and Jentic returns the matching Getro operation along with its input schema.
Time to first call
Direct Getro integration: 1-2 days for token handling, pagination, and contact-import error handling. Through Jentic: under 30 minutes to search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Getro Job Board and Network API through Jentic.
What authentication does the Getro API use?
Getro uses bearer-token authentication: send the token issued by your Getro account in the Authorization header. Through Jentic the token is vaulted and injected per request, so the raw bearer never enters agent context.
Can I search jobs across a network through the API?
Yes. GET /networks/{id}/jobs accepts filter parameters for function, location, and company so you can build a faceted job feed. The companion /networks/{id}/jobs/removed endpoint returns jobs that have been taken down for audit purposes.
What are the rate limits for the Getro API?
The OpenAPI spec does not declare explicit rate limits. Practical guidance is to paginate large lists, cache reference data such as job functions and industry tags, and back off on any 429 response rather than retrying immediately.
How do I import a batch of contacts through Jentic?
Search Jentic for 'import getro contacts', load the POST /contacts/import schema, then execute with your contact array. Jentic handles the bearer-token injection and surfaces any per-row import errors in the response.
Can I attach a note to a contact?
Yes. POST /networks/{network_id}/contacts/notes creates a note tied to a contact, useful for logging intros, follow-ups, or feedback after a portfolio meeting.
Is the Getro API free?
API access is included with paid Getro plans and is not metered separately. Higher-volume integrations and more network-level features unlock at higher tiers — check getro.com for current plan details.
/contacts/import
Import contacts in batch
/networks/{network_id}/contacts/notes
Create a contact note