Skip to main content

Quickstart

Who this is for: developers making their first call. When to use it: right after Authentication. What happens next: you'll have a working request and know where to go deeper.

Pick the tab for your side of the marketplace.

Demand: create your first project

Buyers create a project, then source sample against it.

1 — Verify auth by listing qualifications
curl --location 'https://zampliabackend-staging.azurewebsites.net/api/suppliers/getAllQulifications?lang_id=4' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_TOKEN'
2 — Create a project
curl --location 'https://zampliabackend-staging.azurewebsites.net/api/suppliers/createProjectOnZamplia' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--data '{ "data": { "projectName": "My First Project", "lang_id": 4, "completes": 100, "loi": 12, "ir": 90 } }'

What happens next: Zamplia returns the created project. Continue with the Project Lifecycle guide to add quotas and go live, then explore the full Demand API.

Supply: receive your first surveys

Providers fetch the surveys allocated to them, then send respondents in.

1 — List allocated surveys
curl --location 'https://surveysupplysandbox.zamplia.com/api/v1/Surveys/GetAllocatedSurveys' \
--header 'Accept: application/json' \
--header 'ZAMP-KEY: YOUR_API_KEY'
2 — Generate an entry link for a respondent
curl --location 'https://surveysupplysandbox.zamplia.com/api/v1/Surveys/GenerateLink' \
--header 'Accept: application/json' \
--header 'ZAMP-KEY: YOUR_API_KEY'

What happens next: send your respondent to the generated link. Read the Traffic Flow and Redirect Handling guides, then explore the full Supply API.

Try it live

Every endpoint in the API Reference has an interactive Explorer with copy-paste snippets in cURL, Python, Node, PHP, and more.