> ## Documentation Index
> Fetch the complete documentation index at: https://x-preview-mintlify-b4f5bfb1.mintlify.site/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="x-surface block not-prose font-normal group relative my-2 overflow-hidden w-full cursor-pointer" style={{
    height: '225px'
  }}>
      <div className="flex flex-col h-full">
        <div className="w-full bg-white" style={{
    height: '120px'
  }}>
          <img src={img} className="rounded-none pointer-events-none w-full h-full object-cover" alt={title} />
        </div>
        <div className="flex flex-col justify-center p-6 flex-grow" style={{
    background: 'var(--x-tile-bg)'
  }}>
          <div className="x-headline2 x-text-primary">{title}</div>
        </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>
