# Generate BibTeX from arXiv & PubMed Papers

**Use case:** 

Quickly convert a list of academic paper URLs from arXiv and PubMed into standard BibTeX citations. This streamlines the bibliography creation process for resea

## Input

```json
{
  "url": "https://arxiv.org/abs/1706.03762",
  "urls": [
    "https://arxiv.org/abs/2307.09218",
    "https://pubmed.ncbi.nlm.nih.gov/37452601/",
    "https://arxiv.org/abs/2203.01258"
  ],
  "citationKey": "smith2023deep",
  "entryType": "auto",
  "includeAbstract": true,
  "includeUrl": true
}
```

## Output

```json
{
  "url": {
    "label": "Url"
  },
  "entry_type": {
    "label": "Entry type"
  },
  "title": {
    "label": "Title"
  },
  "authors": {
    "label": "Authors"
  },
  "year": {
    "label": "Year"
  },
  "venue": {
    "label": "Venue"
  },
  "bibtex": {
    "label": "Bibtex"
  }
}
```

## About this Actor

This example demonstrates how to use [URL to BibTeX Converter](https://apify.com/crawlerbros/url-to-bibtex-converter) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/url-to-bibtex-converter) to learn more, explore other use cases, and run it yourself.