Offer API

Integrate our offers directly into your app or platform using our REST API.

Your API Credentials

Loading...

Get Available Offers

Endpoint

GET https://microjoblab.com/api/v1/offers?public=true&aff=YOUR_CODE&country=US

Parameters

ParameterTypeDescription
publicbooleanSet to true
affstringYour affiliate code
countrystringISO country code (US, GB, etc.)
per_pagenumberResults per page (default: 20, max: 100)
categorystringFilter by category (e.g., app-install, survey)

Example Response

{
  "offers": [
    {
      "id": "offer_abc123",
      "name": "Download Cool App",
      "description": "Install and open the app",
      "payoutAmount": 2.5,
      "countries": "US,CA,GB",
      "category": "app-install",
      "trackingUrl": "https://microjoblab.com/api/click?offer=offer_abc123&aff=YOUR_CODE"
    },
    {
      "id": "offer_def456",
      "name": "Complete Survey",
      "description": "Answer 10 survey questions",
      "payoutAmount": 1,
      "countries": "US",
      "category": "survey",
      "trackingUrl": "https://microjoblab.com/api/click?offer=offer_def456&aff=YOUR_CODE"
    }
  ],
  "total": 2,
  "page": 1
}

Tracking Conversions

Each offer includes a trackingUrl field. Redirect your users to this URL when they click on an offer. The conversion will be tracked automatically.

https://microjoblab.com/api/click?offer=OFFER_ID&aff=YOUR_CODE&sub_id=OPTIONAL_TRACKING_ID

The optional sub_id parameter lets you track which user or placement generated the conversion.