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

Landing page seo info

DisplayTitle String or null

The homepage H1

PageTitle String or null

The Page title

PrimaryContentBlock <PrimaryContentBlock> or null

The content block will be displayed in homepage

Title String or null

Title of content block

Content String or null

Content of contentblock

Metadata <Metadata> or null

The site metadata

Title String or null

Meta tile of page

Description String or null

Meta description of page

CountText String or null

The display of total listing item

SeoLinks Collection of <SeoLinkGroup> or null

A list of SEO links for internal linking

CompanyCarousels Collection of <CompanyCarouselItem> or null

A list of Company Carousel

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": [
    {
    },
    {
    }
  ]
}