List available datasources
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": "Over 1 million pre-print research papers from physics, computer science, mathematics, and more",
"category": "research",
"type": "paper",
"modality": [
"text",
"images"
],
"topics": [
"Research Papers",
"Computer Science",
"Physics"
],
"example_queries": [
"What are the latest advancements in self-healing materials?",
"How have ML models improved financial risk assessment?"
],
"pricing": {
"cpm": 0.5
},
"response_schema": {
"id": {
"type": "string",
"description": "Unique identifier"
},
"title": {
"type": "string",
"description": "Document title"
},
"content": {
"type": "string",
"description": "Full text content"
},
"authors": {
"type": "array",
"item_type": "string"
}
}
}
],
"total_count": 36,
"categories": {
"research": {
"name": "Research & Academic",
"count": 4
},
"markets": {
"name": "Financial Markets",
"count": 7
}
}
}