/v2/seriesList All Series
Retrieve a paginated list of all available economic data series.
This endpoint returns a comprehensive list of all economic data series available in the Exanomic API. Each series represents a specific economic indicator, metric, or dataset that can be queried for historical observations. The response includes metadata such as series ID, name, description, frequency, and availability dates.
Authentication: Your API key is required to access economic data series.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pagedefault: 1 | integer | Optional | Page number for pagination (1-indexed). |
limitdefault: 20 | integer | Optional | Number of results per page (max 100). |
category | string | Optional | Filter series by category (e.g., "employment", "inflation", "gdp"). |
search | string | Optional | Search series by name or description. |
frequency | string | Optional | Filter by data frequency: "daily", "weekly", "monthly", "quarterly", "annual". |
page1Page number for pagination (1-indexed).
limit20Number of results per page (max 100).
categoryFilter series by category (e.g., "employment", "inflation", "gdp").
searchSearch series by name or description.
frequencyFilter by data frequency: "daily", "weekly", "monthly", "quarterly", "annual".
Response Attributes
| Name | Type | Required | Description |
|---|---|---|---|
data | array | Required | Array of series objects. |
— id | string | Required | Unique identifier for the series. |
— name | string | Required | Human-readable name of the series. |
— description | string | Required | Detailed description of what the series represents. |
— category | string | Required | Category classification of the series. |
— frequency | string | Required | Data update frequency. |
— unit | string | Optional | Unit of measurement. |
— startDate | string | Required | ISO 8601 date of first available observation. |
— endDate | string | Required | ISO 8601 date of most recent observation. |
pagination | object | Required | Pagination metadata. |
— page | integer | Required | Current page number. |
— limit | integer | Required | Results per page. |
— total | integer | Required | Total number of series available. |
— totalPages | integer | Required | Total number of pages. |
dataArray of series objects.
idUnique identifier for the series.
nameHuman-readable name of the series.
descriptionDetailed description of what the series represents.
categoryCategory classification of the series.
frequencyData update frequency.
unitUnit of measurement.
startDateISO 8601 date of first available observation.
endDateISO 8601 date of most recent observation.
paginationPagination metadata.
pageCurrent page number.
limitResults per page.
totalTotal number of series available.
totalPagesTotal number of pages.
Error Responses
Notes
- Use category and search together to narrow large datasets efficiently.
- Pagination is 1-indexed via page and limit.
- For production clients, cache metadata and refresh periodically.
/v2/series/{id}Get Series Details
Retrieve detailed information about a specific economic data series.
Fetch comprehensive metadata for a single series, including its description, category, frequency, unit of measurement, date range, and other relevant information. This endpoint is useful for understanding what data is available before querying observations.
Authentication: Your API key is required to access series details.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | The unique identifier of the series (e.g., "UNRATE", "CPIAUCSL"). |
idThe unique identifier of the series (e.g., "UNRATE", "CPIAUCSL").
Response Attributes
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | Unique identifier for the series. |
name | string | Required | Human-readable name of the series. |
description | string | Required | Detailed description of what the series represents. |
category | string | Required | Category classification. |
frequency | string | Required | Data update frequency. |
unit | string | Optional | Unit of measurement. |
startDate | string | Required | ISO 8601 date of first available observation. |
endDate | string | Required | ISO 8601 date of most recent observation. |
lastUpdated | string | Required | ISO 8601 timestamp of last data update. |
source | string | Optional | Data source organization. |
idUnique identifier for the series.
nameHuman-readable name of the series.
descriptionDetailed description of what the series represents.
categoryCategory classification.
frequencyData update frequency.
unitUnit of measurement.
startDateISO 8601 date of first available observation.
endDateISO 8601 date of most recent observation.
lastUpdatedISO 8601 timestamp of last data update.
sourceData source organization.
Error Responses
Notes
- Use this endpoint to validate a series ID before requesting observations.
- Metadata fields can be cached client-side to reduce request overhead.