Get Your API Key
1
Sign up for an account
Visit Fetchin Dashboard and create a free account. You’ll get 1,000 credits per month on the trial plan.
2
Get your API key
Once logged in, your API keys are listed on the dashboard. Click the eye icon to reveal one and copy it to your clipboard. You can create additional keys at any time — see Rotating your API key.
Rotating your API key
Your account can hold several keys at once, so you can roll over without any downtime:1
Create the new key
In the dashboard, open API keys and click Create key. Give it a name
you’ll recognise later, such as
production. It becomes valid within about
a minute, and your existing keys keep working the whole time.2
Deploy it
Replace the old key in your environment variables or secret store and roll
out your services. Both keys are live, so there is no window where requests
fail.
3
Check the old key has gone quiet
The Last used column shows when each key last authenticated a request.
Wait until the old key stops moving, and leave enough time to cover anything
that runs only occasionally, such as a nightly job.
4
Revoke the old key
Revoke it from the dashboard. It stops working within about a minute, and
anything still sending it will fail with
401 / INVALID_API_KEY.Last used is updated every few minutes rather than in real time, and it
counts every authenticated request — including ones rejected for quota or rate
limits. Read it as “this key is still deployed somewhere”, not as an exact
request log.
Make Your First Request
Fetch Professional Posts
Fetch Professional Profile
Response Examples
Posts Response
Posts come back in a page object, not a bare array.paginationToken feeds the
next call and hasMore tells you when to stop — see
Fetch Posts for the full walkthrough.
Profile Response
Abridged below — the experience and education arrays are cut to one entry, and the optional blocks (skills, certifications, languages, volunteer causes, recommendations, test scores, cover image, creator info) are left out. The Fetch Profile reference lists every field.Next Steps
API Reference
Explore all available endpoints and parameters
Error Handling
Learn how to handle API errors gracefully
Rate Limits
Understand quota management and limits
Dashboard
Monitor your API usage in real-time