# Sciencedirect — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access peer-reviewed scientific articles with complete metadata including titles, author information, abstracts, and direct PDF links from ScienceDirect's research database. Quickly retrieve bibliographic details and full-text documents to streamline your academic research and literature review process.

**Category:** Education | **Website:** [www.sciencedirect.com/science/article/pii/S2590207524000108?via%3Dihub](https://www.sciencedirect.com/science/article/pii/S2590207524000108?via%3Dihub) | **Docs:** [parse.bot/marketplace/e20d2c9d-8be3-415c-b5c5-9dc1fb4b230a/sciencedirect-com-api](https://parse.bot/marketplace/e20d2c9d-8be3-415c-b5c5-9dc1fb4b230a/sciencedirect-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-sciencedirect-com-api-e20d2c9d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Fetch metadata for a single ScienceDirect article by its PII (Publisher Item Identifier), DOI, or ScienceDirect URL. Returns the article title, authors, publisher, journal name, DOI, abstract text, PDF download URL, volume, pages, year, ISSN, and article URL. One upstream request per call when using PII or URL; two requests when resolving a DOI. Cloudflare protection is solved automatically. At least one of pii, doi, or url must be provided.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `doi` | string | No | Digital Object Identifier for the article, e.g. 10.1016/j.bioflm.2024.100185. Used to resolve the article when pii is not provided. At least one of pii, doi, or url must be provided. |
| `pii` | string | No | ScienceDirect Publisher Item Identifier (PII) for the article, e.g. S2590207524000108. Found in the article URL path after /pii/. At least one of pii, doi, or url must be provided. |
| `url` | string | No | Full ScienceDirect article URL containing the PII, e.g. https://www.sciencedirect.com/science/article/pii/S2590207524000108. The PII is extracted from the URL path. At least one of pii, doi, or url must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sciencedirect-com-api-e20d2c9d/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"doi":"<string>","pii":"<string>","url":"<string>"}'
```
