Authorization#
Add parameter in header x-api-keyx-api-key: TheApiKeyValueYouReceivedFromLeadcastSupportLimit#
Use the limit query parameter to set the records per page. Default is 100.Filter#
field.Contains("value"): contains part of value
Title.Contains("Specialist")
Source eq "Headfirst" and Title.Contains("Specialist")
Company eq "KPN" or Company eq "Orange Cat"
(Company eq "KPN" or Company eq "Orange Cat") and Title.Contains("Specialist")
minimumHourlyRate < 70 and hoursPerWeek > 10
Resources with at least one fileResources with two or more membersResource with at least a member which name contains the word Rickmembers.Any(m => m.fullName.Contains("Rick"))
Resources having a specific labellabels.Any(x => x.Contains("Lokale overheid"))
The current filter expressions are some what experimental and might be slow to execute. For performance reasons specific filter operations might get their own parameters.More examples will follow in the future.Sort#
Default sort value is CreatedOn descCreatedOn desc, Title asc
Navigating the results#
The response will hold (some of) the properties below.total
the total number of results for the filtered recordset.items
the individual result items for the active page of the filtered recordset._links
contains all the urls you can use to navigate the filtered recordset.self defines the current url with results
first defines the url with the first page with results
previous defines the url with the previous page with results
next defines the url with the next page with results
last defines the url with the last page with results
{
"_links": {
"self": "https://localhost/api/public/jobofferslimit=3&filter=title.Contains(%22Specialist%22)&after=a010e5a4-4513-4f8b-b598-aef6ee2f98b8",
"first": "https://localhost/api/public/jobofferslimit=3&filter=title.Contains(%22Specialist%22)&first=True",
"previous": "https://localhost/api/public/jobofferslimit=3&filter=title.Contains(%22Specialist%22)&before=92e65ec5-ff87-4ae4-982d-2881bceacdd0",
"next": "https://localhost/api/public/jobofferslimit=3&filter=title.Contains(%22Specialist%22)&after=4d795810-20b3-4675-9341-8e6d513d1066",
"last": "https://localhost/api/public/jobofferslimit=3&filter=title.Contains(%22Specialist%22)&last=True"
}
"total": 1839
"items": [
{ .. }
]
}
Modified at 2026-02-14 13:23:05