Website logo

Retrieves landing page internal links and seo content for property

Retrieves internal links and seo content for the homepages of the property vertical.

URL: https://api.trademe.co.nz/v1/seo/property/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

<VerticalSeoLandingPageInfo>

SeoLandingPageContent Collection of <VerticalSeoLandingPageContent> or null SeoLandingPageContent
DisplayTitle String or null DisplayTitle
PageTitle String or null PageTitle
PrimaryContentBlock <PagePrimaryContentBlock> or null PrimaryContentBlock
Title String or null Title
Content String or null Content
Metadata <PageMetadata> or null Metadata
Title String or null Title
Description String or null Description
PageName String or null PageName
SeoLinks Collection of <SeoLinkGroup> or null SeoLinks

Example XML Response (switch to JSON)

<VerticalSeoLandingPageInfo xmlns="http://api.trademe.co.nz/v1">
  <SeoLandingPageContent>
    <VerticalSeoLandingPageContent>
      <DisplayTitle>ABC</DisplayTitle>
      <PageTitle>ABC</PageTitle>
      <PrimaryContentBlock>
        <Title>ABC</Title>
        <Content>ABC</Content>
      </PrimaryContentBlock>
      <Metadata>
        <Title>ABC</Title>
        <Description>ABC</Description>
      </Metadata>
      <PageName>ABC</PageName>
    </VerticalSeoLandingPageContent>
    <VerticalSeoLandingPageContent>
      <DisplayTitle>ABC</DisplayTitle>
      <PageTitle>ABC</PageTitle>
      <PrimaryContentBlock>
        <Title>ABC</Title>
        <Content>ABC</Content>
      </PrimaryContentBlock>
      <Metadata>
        <Title>ABC</Title>
        <Description>ABC</Description>
      </Metadata>
      <PageName>ABC</PageName>
    </VerticalSeoLandingPageContent>
  </SeoLandingPageContent>
  <SeoLinks>
    <SeoLinkGroup />
    <SeoLinkGroup />
  </SeoLinks>
</VerticalSeoLandingPageInfo>

Example JSON Response (switch to XML)

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