openapi: 3.1.0 info: title: FINRA Developer Center Async API description: 'The FINRA (Financial Industry Regulatory Authority) Developer Center exposes a REST Query API for accessing market data, regulatory datasets, and related metadata. The Query API provides dataset metadata, partition information, record-level retrieval, and asynchronous query support across organized groups and named datasets.' version: '1.0' contact: name: FINRA Developer Center url: https://developer.finra.org/ servers: - url: https://api.finra.org description: Production - url: https://api-int.qa.finra.org description: QA Test security: - bearerAuth: [] tags: - name: Async description: Asynchronous query operations. paths: /async-requests/group/{group}/name/{dataset}/{requestId}: get: tags: - Async summary: Get async request status description: Returns the status and result location for an asynchronous query request. operationId: getAsyncRequestStatus parameters: - $ref: '#/components/parameters/GroupParam' - $ref: '#/components/parameters/DatasetParam' - name: requestId in: path required: true description: Asynchronous request identifier. schema: type: string responses: '200': description: Async request status. content: application/json: schema: type: object '404': $ref: '#/components/responses/NotFound' components: responses: NotFound: description: Resource not found. content: application/json: schema: type: object parameters: DatasetParam: name: dataset in: path required: true description: Dataset name within the group. schema: type: string GroupParam: name: group in: path required: true description: Dataset group identifier. schema: type: string securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT description: OAuth 2.0 bearer token issued by FINRA Identity Provider. x-generated-from: https://developer.finra.org/ x-generated-by: claude-crawl-2026-05-08