GET
/
quote-combine
Get combined stock quotes
curl --request GET \
  --url https://api.financialcontext.com/quote-combine \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": "<any>",
  "message": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "meta": {
    "pagination": {
      "currentPage": 1,
      "pageSize": 20,
      "totalItems": 150,
      "totalPages": 8,
      "hasMore": true,
      "hasPrevious": false
    }
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

symbols
string
required

Comma-separated list of stock symbols

Minimum length: 1
fields
string

Comma-separated list of fields to include

extended
string

Include extended hours data

Response

Combined quote data retrieved successfully

success
boolean
required

Indicates successful API response

data
any
required

Response data payload

timestamp
string<date-time>
required

ISO 8601 timestamp of the response

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context