Quick Start

Make your first request to the Mapademics Embedded API in minutes.

This guide helps you make a real request to the Mapademics Embedded API and receive data back in just a few minutes.

By the end, you'll have:

  • Authenticated with the API

  • Made a successful request

  • Received structured skills or labor market data


Keys you'll need

All requests to the Embedded API are authenticated using API keys.

You'll use:

  • Platform API key — identifies your application

  • Customer API key — identifies the end customer (required for most production requests)

Include both keys as HTTP headers:

  • Authorization: Bearer <PLATFORM_API_KEY>

  • X-Customer-Key: <CUSTOMER_API_KEY>

In test environments, the customer key may not be required. In production, assume the customer key is required unless an endpoint explicitly says otherwise.

If you don't have keys yet, see Authentication.


Choose a starting point

Pick the path that matches what you're building:


Syllabus skills extraction

Use this path if you want to analyze academic content (such as syllabi or curricula) and extract structured, normalized skills.

What you'll need

  • Platform API key

  • Customer API key

  • A syllabus file (PDF)


Make your first request

Upload a syllabus and extract skills from it.

This returns a task ID. Poll for completion, then retrieve the results:

Example response (truncated)

What you just got

  • A list of normalized skills extracted from the syllabus

  • Proficiency levels indicating depth of coverage

  • Mode indicating whether skills were explicit or inferred

  • Stable skill identifiers you can store and reuse

These skills can be embedded directly into your product or used downstream for analysis and reporting.

Next steps


Labor market intelligence

Use this path if you want to retrieve workforce data for catalogs, planning tools, or discovery experiences.

What you'll need

  • Platform API key

  • Customer API key


Make your first request

Retrieve occupations and labor market data for a CIP code (educational program classification).

Example response (truncated)

What you just got

  • Occupations matched to the educational program

  • Salary and employment projections

  • Demand scores and outlook factors

  • Data suitable for catalogs, dashboards, or planning workflows

Next steps


Common issues

Error
Cause
Fix

401 Unauthorized

Missing or incorrect platform API key

Verify the Authorization header is present and correct

403 Forbidden

Missing or invalid customer API key

Confirm the X-Customer-Key header is included

Production requests require both keys in most cases.

For details, see Authentication.


Where to go next

Last updated