Skip to main content
GET
/
v1
/
datasources
List available data sources
curl --request GET \
  --url https://api.valyu.ai/v1/datasources \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "datasources": [
    {
      "id": "valyu/valyu-arxiv",
      "name": "arXiv",
      "description": "Preprints in physics, mathematics, computer science, quantitative biology, and more.",
      "category": "research",
      "topics": [
        "physics",
        "mathematics",
        "computer science"
      ],
      "modality": "text",
      "example_queries": [
        "CRISPR gene editing mechanisms",
        "quantum error correction methods"
      ],
      "pricing": {
        "cpm": 0.5
      },
      "update_frequency": "daily",
      "size": "2.5M papers"
    },
    {
      "id": "valyu/valyu-pubmed",
      "name": "PubMed",
      "description": "Biomedical literature from MEDLINE, life science journals, and online books.",
      "category": "healthcare",
      "topics": [
        "medicine",
        "biology",
        "pharmacology"
      ],
      "modality": "text",
      "example_queries": [
        "GLP-1 receptor agonists for type 2 diabetes",
        "CAR-T cell therapy advances"
      ],
      "pricing": {
        "cpm": 0.5
      },
      "update_frequency": "daily",
      "size": "36M citations"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get yours at platform.valyu.ai.

Query Parameters

category
string

Filter datasources by category. Use the categories endpoint to discover available categories.

Response

List of available datasources.

success
boolean
required

Whether the request succeeded.

Example:

true

datasources
object[]
required

List of available datasources.

total_count
integer

Total number of datasources returned.

Example:

36

categories
object

Summary of categories with counts.