< Parse Point />

Easily integrate metadata parsing, sitemaps, proxies, and Google Drive downloads into your projects.

/metadata

Fetch metadata (title, description, images) from a given URL. Perfect for building social media previews or enhancing your web scraping projects.

Example Request:

GET /metadata?url=https://example.com
          

Example Response:

{
  "og": {
    "title": "Example Title",
    "description": "Example Description",
    "image": "https://example.com/image.jpg"
  }
}
          

/sitemap

Fetch all links from a sitemap URL. Use the query preview=true for a preview of titles and descriptions. Enhance SEO research or automate web crawling tasks effortlessly.

Example Request:

GET /sitemap?url=https://example.com/sitemap.xml
          

Example Response:

{
  "links": [
    "https://example.com/page1",
    "https://example.com/page2"
  ]
}
          

/proxy

Bypass CORS restrictions for a given URL and fetch its content. Perfect for securely integrating third-party APIs into your projects.

Example Request:

GET /proxy?url=https://example.com/api
          

Example Response:

{
  "data": "Content from the proxied URL."
}
          

/drive-download

Convert a Google Drive public file link to a direct download link. Streamline file access and simplify sharing workflows.

Example Request:

GET /drive-download?url=https://drive.google.com/file/d/FILE_ID/view
          

Example Response:

{
  "downloadLink": "https://drive.google.com/uc?id=FILE_ID&export=download"
}