Website logo

Retrieves landing page internal links and seo content for Jobs

Retrieves internal links and seo content for the Jobs homepage.

URL: https://api.trademe.co.nz/v1/seo/jobs/landingpageinfo.{file_format}
HTTP Method: GET
Requires Authentication? Yes
Permission Required: None
Supported Formats: XML, JSON
Rate Limited? Yes

URL parameters

file_format Enumeration (required) The format of the response.
xml Serialize responses into XML.
json Serialize responses into JSON.

Returns

<SeoLandingPageInfo>

SeoLandingPageContent <SeoLandingPageContent> or null SeoLandingPageContent
DisplayTitle String or null DisplayTitle
PageTitle String or null PageTitle
PrimaryContentBlock <PrimaryContentBlock> or null PrimaryContentBlock
Title String or null Title
Content String or null Content
Metadata <Metadata> or null Metadata
Title String or null Title
Description String or null Description
CountText String or null CountText
SeoLinks Collection of <SeoLinkGroup> or null SeoLinks
CompanyCarousels Collection of <CompanyCarouselItem> or null CompanyCarousels

Example XML Response (switch to JSON)

<SeoLandingPageInfo xmlns="http://api.trademe.co.nz/v1">
  <SeoLandingPageContent>
    <DisplayTitle>ABC</DisplayTitle>
    <PageTitle>ABC</PageTitle>
    <PrimaryContentBlock>
      <Title>ABC</Title>
      <Content>ABC</Content>
    </PrimaryContentBlock>
    <Metadata>
      <Title>ABC</Title>
      <Description>ABC</Description>
    </Metadata>
    <CountText>ABC</CountText>
  </SeoLandingPageContent>
  <SeoLinks>
    <SeoLinkGroup />
    <SeoLinkGroup />
  </SeoLinks>
  <CompanyCarousels>
    <CompanyCarouselItem />
    <CompanyCarouselItem />
  </CompanyCarousels>
</SeoLandingPageInfo>

Example JSON Response (switch to XML)

{
  "SeoLandingPageContent": {
    "DisplayTitle": "ABC",
    "PageTitle": "ABC",
    "PrimaryContentBlock": {
      "Title": "ABC",
      "Content": "ABC"
    },
    "Metadata": {
      "Title": "ABC",
      "Description": "ABC"
    },
    "CountText": "ABC"
  },
  "SeoLinks": [
    {
    },
    {
    }
  ],
  "CompanyCarousels": [
    {
    },
    {
    }
  ]
}