Get Profile Import Quota
Returns the caller's current GitHub and LinkedIn import quota status in one call. - **GitHub import** is a real GitHub OAuth-backed integration (up to 30 of the account's most recently updated repositories, deterministically mapped to skills by repository language — no AI is involved). Free users get 1 import/day and may only import their own OAuth-connected GitHub account. Paid users (any active AI Credits or Portfolio Pro/Bundle plan) may import any public GitHub username, but are still capped at a hidden 50 imports/day — this protects the single shared `config.github.token` request budget used by every paid import and the GitHub sync cron job from being exhausted by one account. - **LinkedIn import** is not a LinkedIn API integration — it's an AI parse of raw text the user pastes in (copied profile text, or text extracted from an exported PDF). Free users get 1 import/month; paid users get unlimited imports. Both import types share a single `replaceMaster` request flag and always create a brand-new RESUME document from the imported data, in addition to optionally overwriting the master profile.
Your personal API key — vw_ followed by 64 hex characters. The same key is also accepted
as Authorization: Bearer vw_....
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/api/v1/profiles/import/quota"{ "success": true, "message": "Quota status fetched successfully", "data": { "github": { "isPaid": false, "remaining": 1, "limit": 1, "resetsInSeconds": 0, "connectedUsername": "octocat" }, "linkedin": { "isPaid": false, "remaining": 1, "limit": 1, "resetsInSeconds": 0, "connectedUsername": null } }}Profile Import
Import a master profile from GitHub (real OAuth) or LinkedIn (AI-parsed paste).
Import Profile From GitHubPOST
Imports a GitHub profile and repositories directly via the GitHub REST API (no AI parsing) and creates a new RESUME document from the result. Free users can only import their own OAuth-connected GitHub account (`usernameOrUrl` is ignored in that case); paid users may import any public username, subject to the hidden 50/day shared-token cap described on `GET /profiles/import/quota`.