openapi: 3.0.3 info: title: Factset Analytics Datastore About Global Filings API description: Allow clients to fetch precalculated Analytics through predeterministic URLs. contact: name: FactSet Research Systems url: https://developer.factset.com/contact email: api@factset.com license: name: Apache License, Version 2.0 url: https://www.apache.org/licenses/LICENSE-2.0 version: 1.0.0 servers: - url: https://api.factset.com description: Production - url: https://api-sandbox.factset.com description: Sandbox security: - basicAuth: [] tags: - name: Global Filings paths: /global-filings/v1/list-files: get: tags: - Global Filings summary: Retrieve filings within FactSet coverage description: Parameters can be used to get the filings parameters: - name: dataset in: query description: This parameter filters the results based on the dataset of the filings documents. required: true schema: type: string enum: - edgar - name: startDate in: query description: The earliest date the API should fetch for. Dates can be YYYY-MM-DD format required: true schema: type: string format: date - name: endDate in: query description: The date after upto eight days of the earliest date given the API should fetch for. Dates can be YYYY-MM-DD format required: true schema: type: string format: date responses: '200': description: Global Filings data items content: application/json: schema: $ref: '#/components/schemas/filingsResponse' examples: default200ResponseExample: $ref: '#/components/examples/200lfdefaultExample' '400': description: Bad request- invalid or missing parameter content: application/json: schema: $ref: '#/components/schemas/status' examples: 400defaultExample: $ref: '#/components/examples/400lfdefaultExample' components: examples: 200lfdefaultExample: summary: Sample Response value: - filePath: edgar/2020/20200715.zip fileUrl: https://fdss3-news-content-archive-prod-a.s3.amazonaws.com/edgar/2020/20200715.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIA6B6XG7VE24JNFFXZ%2F20220216%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220216T111407Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEHQaCXVzLWVhc3QtMSJHMEUCIQDDY%2BKy5yyr6zBc%2FwxQYOIUr%2BNicMgpE2gKoBXk3hc9SgIgFRx7ey2FN9BgEEvfwl%2FGVpPpVvrTyNv0H0sIaC7ckXcqqQIIvP%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARABGgw5NjYyODIxMTY0MjUiDMdI11x8Guqcy7rKtCr9ASKyQmvqLEQyZyTMPH6i1ZsMzUbqCDh2QMlAUz4bhspkuZyB7fMa0D0xqnzMgjYC3A2oN4o0O%2FkklhL6S3A13GC5lUu68leh5ul3150a5A8NwN1YJA0xE2AxCNP1AsU7SgxEPjkKz7%2FvmGMHqWYH0tcx7r%2FNAd3lQFoj6WgjhkL1VJmWWnu2bxmfpAxNnUB5pTgfnw3wS9T47CQNGQJ1hO38kFWcnse82biFm%2Br1FGmDHAJj1eTYqLWjQmCi1U3XnbnTkCTEsOyIGcx9uHAxVRSiDqwkmiFXzRy9Zy%2F240OFyfmP%2BSOgjEqoz6Q%2BtnCyedeJO6ogrKuGt2IxX50w%2FbizkAY6mgGj7tordZZ0GmDYyNicHOKR%2Fll66YgZWl0cW1HXHoduCy21Nv7RsgQTQllK%2BnTeP3tw64enwZzxfzLKE01DV73v5DqXMjSLTiRMZh9AD8CtOpHbW08Hxe2hb8%2Fn3ppU8%2FsWt3u6YiCdKk5dzDPztObwxE7gVLZfoRcMJ7QX2hBE5bVkqIR5HX3a5OwmvCrrEazjwtOeaS%2FngoPq&X-Amz-Signature=ad377632936524e5de4c02066d4412b8fe2f2b8f956f30a1dc164ce9598a05f3 400lfdefaultExample: summary: Sample error Response value: id: 06d89fce-b6fa-43b4-a1a7-4f5e8ceeae44 error_message: parameterError:endDate must be an int or a date schemas: filingsResponse: type: array items: $ref: '#/components/schemas/filingsFiles' status: title: Response Status of Global Filings type: object properties: id: type: string error_message: description: Textual error message type: string filingsFiles: type: object properties: filePath: description: path of the filings document. type: string fileUrl: description: Download link for the filings document. type: string securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation