> ## Documentation Index
> Fetch the complete documentation index at: https://developers.lucca.fr/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Started With Job-Offers

The Job-Offers API endpoint is global and publicly accessible, allowing third-party
job boards and aggregators to retrieve active job offers from Lucca customers who
have opted in to share their job data with external platforms.

As a result:

* base URL is "[https://jobs.world.luccasoftware.com](https://jobs.world.luccasoftware.com)" (rather than the usual "https\://{customer_subdomain}.ilucca.net");
* the tenant identity is provided as a path parameter `{customer_subdomain}`;
* it does not require authentication.

<Tip>Bear in mind some XML elements may contain HTML content.</Tip>

<Tip>This API endpoint returns ALL active job-offers for the tenant, without paging.</Tip>

<RequestExample>
  ```http theme={null}
  GET /xml/{customer_subdomain}/lucca.xml HTTPS/2
  Host: jobs.world.luccasoftware.com
  Accept: application/xml
  ```
</RequestExample>

<ResponseExample>
  ```xml theme={null}
  <?xml version="1.0" encoding="UTF-8"?>
  <AllJobs>
    <CompanyName>Acme Corp</CompanyName>
    <CompanyDescription>Acme Corp designs and manufactures innovative solutions for businesses worldwide.</CompanyDescription>
    <Offers>
      <JobOffer>
        <JobOpportunityId>101</JobOpportunityId>
        <Title>Senior Software Engineer</Title>
        <Content>&lt;p&gt;🚀 Join our engineering team to build scalable backend services and APIs!&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;🛠️ Design and develop high-performance REST APIs&lt;/li&gt;
    &lt;li&gt;☁️ Deploy and maintain services on cloud platforms&lt;/li&gt;
    &lt;li&gt;🤝 Collaborate with product and design teams in an agile environment&lt;/li&gt;
    &lt;li&gt;🔍 Participate in code reviews and mentor junior developers&lt;/li&gt;
  &lt;/ul&gt;</Content>
        <ExpectedProfile>&lt;p&gt;💼 We are looking for an experienced engineer with:&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;✅ 5+ years of experience in backend development&lt;/li&gt;
    &lt;li&gt;✅ Proficiency in Java or C#&lt;/li&gt;
    &lt;li&gt;✅ Strong knowledge of REST APIs and cloud platforms&lt;/li&gt;
    &lt;li&gt;⭐ Bonus: experience with Kubernetes or Terraform&lt;/li&gt;
  &lt;/ul&gt;</ExpectedProfile>
        <Localisation>Paris, France</Localisation>
        <WorkContract>
          <Type>Permanent</Type>
        </WorkContract>
        <RemunerationRange>55K - 70K €</RemunerationRange>
        <Href>https://acme.ilucca.net/jobs/101/apply</Href>
      </JobOffer>
      <JobOffer>
        <JobOpportunityId>102</JobOpportunityId>
        <Title>Marketing Intern</Title>
        <Content>&lt;p&gt;📣 Support the marketing team in all things content and campaigns!&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;✍️ Assist in writing blog posts and social media content&lt;/li&gt;
    &lt;li&gt;📊 Analyze campaign performance and prepare reports&lt;/li&gt;
    &lt;li&gt;🎨 Collaborate with the design team on visual assets&lt;/li&gt;
    &lt;li&gt;📅 Help plan and coordinate marketing events&lt;/li&gt;
  &lt;/ul&gt;</Content>
        <ExpectedProfile>&lt;p&gt;🎓 We are looking for a motivated intern who has:&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;✅ Currently enrolled in a Marketing or Communications degree&lt;/li&gt;
    &lt;li&gt;✅ Good written communication skills in French and English&lt;/li&gt;
    &lt;li&gt;⭐ Bonus: familiarity with social media tools (Hootsuite, Buffer…)&lt;/li&gt;
  &lt;/ul&gt;</ExpectedProfile>
        <Localisation>Lyon, France</Localisation>
        <WorkContract>
          <Type>Internship</Type>
        </WorkContract>
        <RemunerationRange>800 - 1000 € / month</RemunerationRange>
        <Href>https://acme.ilucca.net/jobs/102/apply</Href>
      </JobOffer>
    </Offers>
  </AllJobs>
  ```
</ResponseExample>
