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

# Success Stories

> Customer success stories from developers and businesses building with the X API, including case studies across marketing, research, healthcare, and finance.

export const data = [{
  "title": "Typefully x Raycast",
  "description": "",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/typefully",
  "category": "case-study",
  "use-case": "",
  "product": ""
}, {
  "title": "Audiense x Banco Pichincha",
  "description": "Banco Pichincha x X How enhanced targeting enhances success",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/audiense-banco-pichincha",
  "category": "case-study",
  "use-case": "",
  "product": ""
}, {
  "title": "Publicis x YouScan",
  "description": "Using visual listening to extract insights",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/publicis-youscan",
  "category": "case-study",
  "use-case": "",
  "product": ""
}, {
  "title": "How ListenFirst adopted the v2 API",
  "description": "Discover how ListenFirst built with the v2 API and how this has impacted their business.",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/success-stories/cards/listenfirst-x-improving-efficiency.png",
  "path": "/success-stories/listenfirst-x-improving-efficiency",
  "category": "success-story",
  "use-case": "",
  "product": ""
}, {
  "title": "Red Cloud Financial Services",
  "description": "Mining data to build new audiences",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/red-cloud-financial",
  "category": "case-study",
  "use-case": "",
  "product": ""
}, {
  "title": "Decoding Hate",
  "description": "case-study",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/decoding-hate",
  "category": "",
  "use-case": "",
  "product": ""
}, {
  "title": "SMASH x Audiense",
  "description": "Leveraging valuable followers to reach a larger audience",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/smash-and-audiense",
  "category": "case-study",
  "use-case": "",
  "product": ""
}, {
  "title": "The Municipality of the Hague",
  "description": "Read how the municipality of The Hague was able to create an improved experience on their roads via social media monitoring — through their partnership with PublicSonar.",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/publicsonar",
  "category": "success-story",
  "use-case": "",
  "product": ""
}, {
  "title": "Flocknet",
  "description": "Connect with your network on Twitter",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/card_header.png",
  "path": "/success-stories/flocknet",
  "category": "success-story",
  "use-case": "",
  "product": ""
}, {
  "title": "GSK Consumer Healthcare",
  "description": "See how GSK Consumer Healthcare partnered with Meltwater to reach healthcare professionals active on Twitter, in an effort to establish these professionals as influencers.",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/success-stories/cards/gsk-meltwater.png",
  "path": "/success-stories/gsk-meltwater",
  "category": "case-study",
  "use-case": "",
  "product": ""
}, {
  "title": "Canada Excellence Research Chair (CERC)",
  "description": "Using Twitter’s API to fuel academic research",
  "image": "https://mintlify.s3.us-west-1.amazonaws.com/x-preview/images/success-stories/cards/cerc-academic-research.png",
  "path": "/success-stories/cerc-academic-research",
  "category": "success-story",
  "use-case": "",
  "product": ""
}];

export const SuccessStoryCard = ({img, href, title}) => {
  return <a href={href} className="card block not-prose font-normal group relative my-2 ring-2 ring-transparent rounded-xl bg-white/50 dark:bg-codeblock/50 border border-gray-100 shadow-md dark:shadow-none shadow-gray-300/10 dark:border-gray-800/50 overflow-hidden w-full cursor-pointer hover:!border-primary dark:hover:!border-primary-light" style={{
    height: '225px'
  }}>
      <div className="flex flex-col h-full">
        <div className="w-full bg-white" style={{
    height: '120px'
  }}>
          <span aria-owns="rmiz-modal-942aec5edfb7" data-rmiz="" className="h-full w-full block">
            <span data-rmiz-content="found" className="h-full w-full block">
              <img src={img} className="rounded-none pointer-events-none w-full h-full object-cover" alt={title} />
            </span>
            <span data-rmiz-ghost="" className="absolute inset-0">
              <button aria-label="Expand image" data-rmiz-btn-zoom="" type="button">
                <svg aria-hidden="true" data-rmiz-btn-zoom-icon="true" fill="currentColor" focusable="false" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
                  <path d="M 9 1 L 9 2 L 12.292969 2 L 2 12.292969 L 2 9 L 1 9 L 1 14 L 6 14 L 6 13 L 2.707031 13 L 13 2.707031 L 13 6 L 14 6 L 14 1 Z" />
                </svg>
              </button>
            </span>
          </span>
        </div>
        <div className="flex flex-col justify-center p-6 flex-grow">
          <h2 className="font-semibold text-sm text-white">{title}</h2>
        </div>
      </div>
    </a>;
};

Companies and individuals all over the world have used the X Developer Platform to creatively innovate, gain valuable insights, and shape the future.

## Browse success stories

<CardGroup cols={3}>
  {data.map((item, index) => (
      <SuccessStoryCard key={index} title={item.title} img={item.image} href={item.path}/>
    ))}
</CardGroup>
