Naas Documentation
Naas.ai
GitHub
Slack Community
What's new?
Searchβ¦
Welcome to Naas
π
Templates
π
Low-code features
π
Low-code drivers
π¬
AI/Machine Learning
Airtable
Awesome-notebooks
Bubble
Canny
CityFalcon
FTP
HTML builder
Google Sheets
Healthchecks
Hubspot
IFTTT
Integromat
Mailbox
Jupyter
LinkedIn
Markdown
Microsoft Teams
MongoDB
NewsAPI
Notion
PDF
Plotly
Slack
Thinkific
Toucan
Qonto
Yahoo
Zapier
π
Community
Essentials
Advanced
Best Practices
FAQ
β‘
Naas manager
π
Security
Powered By
GitBook
CityFalcon
Connect to cityfalcon api and get a dataframe
CityFALCON: Your Personalised Financial News Feed
Website
Get
Action
You can request only tickers on Cityfalcon free plan
1
import
naas_drivers
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
)
Copied!
Fields
Choose fields you want to get in result, list available below:
title
image
link
description
score
sentiment
source
source_logo
image
1
fields
=
[
"image"
,
"title"
]
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
fields
=
fields
)
Copied!
Country
Country of the stock exchange
1
country
=
"US"
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
country
=
country
)
Copied!
Limit
Limit the number of results
1
limit
=
5
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
limit
=
limit
)
Copied!
Minimum Score
minimum Score of Cityfalcon
1
min_score
=
30
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
min_score
=
min_score
)
Copied!
Paywall
Show article with a paywall
1
paywall
=
True
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
paywall
=
paywall
)
Copied!
Identifier_type
1
identifier_type
=
"full_tickers"
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
identifier_type
=
identifier_type
)
Copied!
Time_filter
1
time_filter
=
"d21"
2
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
time_filter
=
time_filter
)
Copied!
Language
1
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
).
get
(
"TSLA"
,
languages
=
"en"
)
Copied!
Connect
You can also save your connection and don't repeat it for each method.
1
naas_drivers
.
cityfalcon
.
connect
(
"YOUR_API_KEY"
)
2
# You can use our default apikey limited to 200/hours request for all users
3
β
4
cityfalcon
=
naas_drivers
.
cityfalcon
.
connect
()
5
appl
=
cityfalcon
.
get
(
"AAPL"
)
6
tsla
=
cityfalcon
.
get
(
"TSLA"
)
Copied!
Official documentation
Financial News API Documentation | CityFALCON
Previous
Canny
Next
FTP
Copy link
Edit on GitHub
Contents
Get
Action
Fields
Country
Limit
Minimum Score
Paywall
Identifier_type
Time_filter
Language
Connect
Official documentation