Skip to main content
GET
/
quote
/
{symbol}
Get stock quote
curl --request GET \
  --url https://api.fcontext.com/quote/{symbol} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": "<any>",
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 100,
    "hasNext": true
  },
  "message": "<string>",
  "timestamp": "<string>",
  "meta": {
    "pagination": {
      "page": 1,
      "limit": 10,
      "total": 100,
      "hasNext": true
    }
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required

Stock symbol (e.g., AAPL, NASDAQ:AAPL)

Required string length: 1 - 20
Example:

"AAPL"

Query Parameters

extended
string

Include extended hours data

fields
string

Comma-separated list of fields to include

Response

Quote data retrieved successfully

success
boolean
required

Indicates successful API response

data
any
required

Response data payload

timestamp
string
required

ISO 8601 timestamp of the response

pagination
object

Pagination information for paginated responses

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context