Introduction
Welcome to the Market Prophit API! You can use our API to access Market Prophit API endpoints, which can get information on crowd sentiment, market prophit sentiment, z-scores, moving averages, tweet volume, and/or tweet buzz in our database.
We have language bindings only in Shell right now. You can view code examples in the dark area to the right, and you can switch the programming language of the examples with the tabs in the top right.
Authentication
All requests must use standard HTTP Basic Auth headers with the HTTPS protocol.
You don’t need to provide a password for Basic Auth; simply use your secret API key as the Basic Auth user.
Remember, your secret API key is secret, so do not share it with anyone.
Response Formats
Accepts | Affixed | Response |
---|---|---|
none | none | JSON response |
text/html | none | Pretty JSON (indented 2 spaces) and wrapped with <pre><code> |
application/json | .json | JSON response |
application/xml | .xml | XML response with results as <row> attributes wrapped in <rows> attribute |
text/csv | .csv | CSV file delimited by “;” with first line of underscored column names |
Errors
The Market Prophit API uses the following error codes:
Codes
Code | Name | Description |
---|---|---|
400 | Bad Request | Missing a required parameter and/or invalid parameter provided |
401 | Unauthorized | Invalid API key |
403 | Forbidden | Restricted endpoint |
404 | Not Found | Requested endpoint does not exist |
406 | Not Acceptable | Invalid response format requested |
500 | Internal Server Error | Internal problem, try again later |
Types
Type | Description |
---|---|
invalid_request_error | An invalid request was made |
api_error | An error with the Market Prophit API occured |
Websockets
In order to communicate with websockets, you must follow these requirements:
Use a socket.io API wrapper (or an alternative if available):
Retrieve a JSON Web Token (“JWT”) to be passed as
token
in the request query objectBind and/or emit events as necessary
Websocket Events
Examples using client-side JavaScript (through use of jQuery and socket.io):
Bindable Events
Examples using client-side JavaScript (through use of jQuery and socket.io):
Name | Arguments | Description |
---|---|---|
connect | callback* | Connect to websockets |
disconnect | callback* | Disconnect from websockets |
error | callback | Error from websocket connection |
data | callback | Response from endpoint currently subscribed to (contains the following fields: params , path , results , and timestamp ) |
subscribe | name, options, callback* | Subscribe to an endpoint |
unsubscribe | name, options, callback* | Unsubscribe from an endpoint |
* indicates callback function returns a param of err
(e.g. callback(err)
), and err
will be null if successful or will contain an error message if unsuccessful
Event Arguments
Argument | Type | Description | Required |
---|---|---|---|
name | String | Name of the event | Yes |
options | Object | Options to pass to the event | Yes |
callback | Function | Returns an error object (if any) | No |
options
Parameter | Description | Required | Default |
---|---|---|---|
path | Endpoint path (e.g. “crowd-sentiment”, see below “Streaming Intraday Data” and “Streaming Intraday Bundled Chart Data” sections for a list of all possible paths) | yes | none |
params | Object of parameters to pass to endpoint (e.g. { ticker: 'AAPL' } ) |
yes | none |
callback(err)
Returns an error object (if any)
JSON Web Token (“JWT”)curl -X POST -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/jwt"
Returns response headers such as:
HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Access-Control-Allow-Headers: X-Requested-With
Access-Control-Allow-Methods: POST, GET, OPTIONS
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 9311
set-cookie: igloo=s%3ANo6GnDLPLP2ifdR-o8lsQ7hw6liDc31V.12j12YGRlSK0J8l2%2FoE%2FXSnNoU3hwH6YAqJ3t7UU8hQ; Path=/; Expires=Thu, 04 Sep 2014 21:06:07 GMT; HttpOnly
X-Response-Time: 35773.06500ms
Date: Wed, 03 Sep 2014 21:06:07 GMT
Connection: keep-alive
Returns response such as:
{
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJfX3ZlcnNpb25zIjpbeyJjcmVhdGVkX2F0IjoiMjAxNC0wNy0yMlQxOTowNToxNy4wMDBaIiwidXBkYXRlZF9hdCI6IjIwMTQtMDctMjJUMTk6MDU6MTguMTgyWiIsImZ1bGxfZW1haWwiOiJCcmFuZG9uIEhvb2QgPGhvb2RicmFuZG9uQHlhaG9vLmNvbT4iLCJhcGkiOiJza19saXZlX3czUTRiQ0pWQjh4Z3llSUtKbVRDNERTNSIsInNhbHQiOiI4N2Q1OWRiOTkwODE3ODYzYTAzM2E3MDkzMjE4OWI0ZTc5MzE1NWZkODRhMzA3ZmNmZjZhOThlMzJjNWJhYzEyIiwiaGFzaCI6Ijg1YmIzMGQzMTllODg2ZmRhMDY3MGEzZTljMDhlOGVhMWJhYzEzNjQwOGQ5MjFjYzI1MzVhYmVhM2M0ZDY3MmQ2YzAzMjMwYTllNWY0MGZmY2RlNTkzMzZkNDYwMzZkMDk4NzczNGFhYTU4ZGQ1ZjAxMjkzZmFhMjAxYzdkY2FkMWViMGY2YzE3MzJkZTRkNmMzNjlmYjVhNGM2YmZiMjMxMGUxMzA2OWE0Zjg2OTFmNjI0Y2VlYWYyYjYyMjE5MGI2NDAzYzJhMWYwOWU4MjQwMjZlYzkxODM3OTU3MjUyYWNiZmRkZTNkYzQ2ZDQ3MThlZjExOTM4NWIzODVmOTNmNDA4ODI1NTI1MTUwZTNjNDA1M2FhOTYxYmRlMGY0MjIxZWY2Zjk2ZDVlMTM2Mzc4OWZlMzgzNWM3YjhmMjhiNGUzZGJiMzQ2OWVjNGZiY2FhZDBkMDU4NjJjMWQxZDQyNzFiYmFjZjk5Njg4MGVlNDgzMThkMTRiNmZmNzgwZDQwZjkyMjM0YjYwYzEwNmM0OTYwYjM1NmI1MGU3MDRkNmQ3Y2Q0NDM5Mjk4NjQ1YzUyNWRhZmYwNmZjYWExMjkxYjcyMjRjM2JjZTc3NWQ3OTZkNDAzY2IzNDEwYWUwNjViNmIzMjA2NDA4NjI5N2E3YWFmYjRjNmQzMmYxNzAwYTBhM2JkZGY5OTE3NDY0OWQwMDY5NDRhYmI1OWI0NDA1ODA3ZjJjNDBhM2UwNDk3Mjg0MWQ0YTdlZmNjMmY0NjQwNjk2MDQ2MzhiNGViMWYxNmVlZjIyZjQ2NGFkZDk2ODBhZTZkZTA5OGUwM2FmYmNmN2I3NTA2NTM5NDI2NWZhNTZhODI4MTJlNDkyMWNlN2IxMjczY2E1OTg3ZGM3NjIzZGQ4YWRhMTY3N2QxZTA4NjI1MWQ0ODViYzk3NjhjYzJhMzAxYWUxNDNmZDA4Njc4YjdiZjkwNTVkODZkNWIyZThlNDAwOGEwYjJlYTYyZDU3NTdiNjI2N2JmY2ZiNTNlYzdlYmM3MjZiYWM5ZGY5ZDc3ZTFjZTAzMjUzMTZhNDI5YWE0MTExODVkZDExODdmOTk3M2JlNDcwNTBkYjMxMGYyM2QzYTM4N2U3ODFjMDAzMDViZTI3YjI5YWM0M2I2YTU4MjM3MGYyNGVjYTVjNzVlZjI2MGIzZjRiYjgzMzdlMTNlMTk0YTRkN2RkYWRhODFiYzJmOGFkMTQxYmU3YmQ0ZGI4NzZjNmY3OTVkYzdhMzUwMWNjNDU3NGI4NmNhMGFlNDY4MDM2MzdkMzAxZTMxMWQxYTMzZmIxZWNjMmNlZmYxYzU4YTAzN2VjZTYyODI0NzkwYjU3MDU3YTciLCJlbWFpbCI6Imhvb2RicmFuZG9uQHlhaG9vLmNvbSIsIm5hbWUiOiJCcmFuZG9uIEhvb2QiLCJjb21wYW55IjoiTWFya2V0IFByb3BoaXQiLCJtZXNzYWdlIjoiKioqIFRoaXMgaXMgTmljayBCYXVnaCBqdXN0IHRlc3Rpbmcgb3V0IHRoaXMgYW5kIHNldHRpbmcgdXAgQnJhbmRvbiB3aXRoIGFuIGFjY291bnQgZm9yIHRlc3RpbmcgdG9kYXkuICoqKiIsIl9pZCI6IjUzY2ViNWVkODY4MThhMTk3YmE4ZWMyMCIsInRpY2tlcnMiOltdLCJ0cmlhbCI6dHJ1ZSwiYWN0aXZlIjpmYWxzZSwiZ3JvdXAiOiJ1c2VyIiwib2JqZWN0IjoidXNlciIsImlkIjoiNTNjZWI1ZWQ4NjgxOGExOTdiYThlYzIwIiwiX192IjowfSx7ImlkIjoiNTNjZWI1ZWQ4NjgxOGExOTdiYThlYzIwIiwib2JqZWN0IjoidXNlciIsImdyb3VwIjoiYWRtaW4iLCJhY3RpdmUiOnRydWUsInRyaWFsIjp0cnVlLCJ0aWNrZXJzIjpbXSwiX192IjoxLCJfaWQiOiI1M2NlYjVlZDg2ODE4YTE5N2JhOGVjMjAiLCJtZXNzYWdlIjoiKioqIFRoaXMgaXMgTmljayBCYXVnaCBqdXN0IHRlc3Rpbmcgb3V0IHRoaXMgYW5kIHNldHRpbmcgdXAgQnJhbmRvbiB3aXRoIGFuIGFjY291bnQgZm9yIHRlc3RpbmcgdG9kYXkuICoqKiIsImNvbXBhbnkiOiJNYXJrZXQgUHJvcGhpdCIsIm5hbWUiOiJCcmFuZG9uIEhvb2QiLCJlbWFpbCI6Imhvb2RicmFuZG9uQHlhaG9vLmNvbSIsImhhc2giOiI4NWJiMzBkMzE5ZTg4NmZkYTA2NzBhM2U5YzA4ZThlYTFiYWMxMzY0MDhkOTIxY2MyNTM1YWJlYTNjNGQ2NzJkNmMwMzIzMGE5ZTVmNDBmZmNkZTU5MzM2ZDQ2MDM2ZDA5ODc3MzRhYWE1OGRkNWYwMTI5M2ZhYTIwMWM3ZGNhZDFlYjBmNmMxNzMyZGU0ZDZjMzY5ZmI1YTRjNmJmYjIzMTBlMTMwNjlhNGY4NjkxZjYyNGNlZWFmMmI2MjIxOTBiNjQwM2MyYTFmMDllODI0MDI2ZWM5MTgzNzk1NzI1MmFjYmZkZGUzZGM0NmQ0NzE4ZWYxMTkzODViMzg1ZjkzZjQwODgyNTUyNTE1MGUzYzQwNTNhYTk2MWJkZTBmNDIyMWVmNmY5NmQ1ZTEzNjM3ODlmZTM4MzVjN2I4ZjI4YjRlM2RiYjM0NjllYzRmYmNhYWQwZDA1ODYyYzFkMWQ0MjcxYmJhY2Y5OTY4ODBlZTQ4MzE4ZDE0YjZmZjc4MGQ0MGY5MjIzNGI2MGMxMDZjNDk2MGIzNTZiNTBlNzA0ZDZkN2NkNDQzOTI5ODY0NWM1MjVkYWZmMDZmY2FhMTI5MWI3MjI0YzNiY2U3NzVkNzk2ZDQwM2NiMzQxMGFlMDY1YjZiMzIwNjQwODYyOTdhN2FhZmI0YzZkMzJmMTcwMGEwYTNiZGRmOTkxNzQ2NDlkMDA2OTQ0YWJiNTliNDQwNTgwN2YyYzQwYTNlMDQ5NzI4NDFkNGE3ZWZjYzJmNDY0MDY5NjA0NjM4YjRlYjFmMTZlZWYyMmY0NjRhZGQ5NjgwYWU2ZGUwOThlMDNhZmJjZjdiNzUwNjUzOTQyNjVmYTU2YTgyODEyZTQ5MjFjZTdiMTI3M2NhNTk4N2RjNzYyM2RkOGFkYTE2NzdkMWUwODYyNTFkNDg1YmM5NzY4Y2MyYTMwMWFlMTQzZmQwODY3OGI3YmY5MDU1ZDg2ZDViMmU4ZTQwMDhhMGIyZWE2MmQ1NzU3YjYyNjdiZmNmYjUzZWM3ZWJjNzI2YmFjOWRmOWQ3N2UxY2UwMzI1MzE2YTQyOWFhNDExMTg1ZGQxMTg3Zjk5NzNiZTQ3MDUwZGIzMTBmMjNkM2EzODdlNzgxYzAwMzA1YmUyN2IyOWFjNDNiNmE1ODIzNzBmMjRlY2E1Yzc1ZWYyNjBiM2Y0YmI4MzM3ZTEzZTE5NGE0ZDdkZGFkYTgxYmMyZjhhZDE0MWJlN2JkNGRiODc2YzZmNzk1ZGM3YTM1MDFjYzQ1NzRiODZjYTBhZTQ2ODAzNjM3ZDMwMWUzMTFkMWEzM2ZiMWVjYzJjZWZmMWM1OGEwMzdlY2U2MjgyNDc5MGI1NzA1N2E3Iiwic2FsdCI6Ijg3ZDU5ZGI5OTA4MTc4NjNhMDMzYTcwOTMyMTg5YjRlNzkzMTU1ZmQ4NGEzMDdmY2ZmNmE5OGUzMmM1YmFjMTIiLCJhcGkiOiJza19saXZlX3czUTRiQ0pWQjh4Z3llSUtKbVRDNERTNSIsImZ1bGxfZW1haWwiOiJCcmFuZG9uIEhvb2QgPGhvb2RicmFuZG9uQHlhaG9vLmNvbT4iLCJ1cGRhdGVkX2F0IjoiMjAxNC0wNy0yMlQxOTowNToxNy4wMDBaIiwiY3JlYXRlZF9hdCI6IjIwMTQtMDctMjJUMTk6MDU6MTcuMDAwWiIsInRyaWFsX2VuZF9hdCI6IjIwMTUtMTItMDFUMDU6MDA6MDAuMDAwWiJ9XSwiYWN0aXZhdGVfdG9rZW4iOiIiLCJhY3RpdmF0aW9uX2VtYWlsX3NlbnRfYXQiOiIyMDE0LTA4LTEyVDExOjQ2OjI4LjM5NloiLCJhZGRyZXNzIjoiMTIzIFNvbWUgU3QiLCJhcGkiOiJza19saXZlX3czUTRiQ0pWQjh4Z3llSUtKbVRDNERTNSIsImNpdHkiOiJTb21lIENpdHkiLCJjb21wYW55IjoiTWFya2V0IFByb3BoaXQiLCJjcmVhdGVkX2F0IjoiMjAxNC0wNy0yMlQxOTowNToxNy4wMDBaIiwiY3VzdG9tZXJfbnVtYmVyIjoiMTQ3MDI2MzcwMyIsImVtYWlsIjoiaG9vZGJyYW5kb25AeWFob28uY29tIiwiZnVsbF9lbWFpbCI6IkJyYW5kb24gSG9vZCA8aG9vZGJyYW5kb25AeWFob28uY29tPiIsImZ1bGxfbmFtZSI6IkJyYW5kb24gSG9vZCIsIm1lc3NhZ2UiOiIqKiogVGhpcyBpcyBOaWNrIEJhdWdoIGp1c3QgdGVzdGluZyBvdXQgdGhpcyBhbmQgc2V0dGluZyB1cCBCcmFuZG9uIHdpdGggYW4gYWNjb3VudCBmb3IgdGVzdGluZyB0b2RheS4gKioqIiwibmFtZSI6IkJyYW5kb24iLCJwaG9uZSI6IjEyMy00NTYtNzg5MCIsInJlc2V0X2F0IjoiMjAxNC0wNy0zMFQwMDoxOTo1Ni4wMDBaIiwicmVzZXRfdG9rZW4iOiIiLCJzdGF0ZSI6IlNvbWUgU3RhdGUiLCJzdHJlYW1pbmdfYWNjZXNzIjp0cnVlLCJzdXJuYW1lIjoiSG9vZCIsInRyaWFsX2VuZF9hdCI6IjIwMTUtMTItMDFUMDU6MDA6MDAuMDAwWiIsInVwZGF0ZWRfYXQiOiIyMDE0LTA3LTIyVDE5OjA1OjE3LjAwMFoiLCJ3ZWxjb21lX2VtYWlsX3NlbnRfYXQiOiIyMDE0LTA4LTEyVDExOjQ2OjI4LjM5NloiLCJ6aXAiOiIxMjM0NSIsInJhdGVfbGltaXRfb3ZlcmFnZV9hbW91bnQiOjAsInJhdGVfbGltaXRfb3ZlcmFnZV9pbnRlcnZhbCI6MCwiYmlsbGluZ19hbW91bnRfcGVyX2ZyZXF1ZW5jeSI6MCwiYmlsbGluZ19mcmVxdWVuY3kiOiJtb250aGx5IiwiYmlsbGluZ19pbnRlcnZhbCI6InN0YXJ0X29mX2ZyZXF1ZW5jeSIsImVuZHBvaW50X3BhdGhzIjpbIi9oaXN0b3JpY2FsL2Nyb3dkLXNlbnRpbWVudC1jaGFydC1kYXRhIiwiL2hpc3RvcmljYWwvbWFya2V0LXByb3BoaXQtc2VudGltZW50LWNoYXJ0LWRhdGEiLCIvaGlzdG9yaWNhbC9kYWlseS1jcm93ZC1zZW50aW1lbnQtY2hhcnQtZGF0YSIsIi9oaXN0b3JpY2FsL2RhaWx5LW1hcmtldC1wcm9waGl0LXNlbnRpbWVudC1jaGFydC1kYXRhIiwiL3JlYWwtdGltZS9jcm93ZC1zZW50aW1lbnQiLCIvaGlzdG9yaWNhbC9jcm93ZC1zZW50aW1lbnQiLCIvaGlzdG9yaWNhbC9kYWlseS1jcm93ZC1zZW50aW1lbnQiLCIvcmVhbC10aW1lL2Nyb3dkLXNlbnRpbWVudC1tb3ZpbmctYXZlcmFnZSIsIi9oaXN0b3JpY2FsL2Nyb3dkLXNlbnRpbWVudC1tb3ZpbmctYXZlcmFnZSIsIi9oaXN0b3JpY2FsL2RhaWx5LWNyb3dkLXNlbnRpbWVudC1tb3ZpbmctYXZlcmFnZSIsIi9yZWFsLXRpbWUvbWFya2V0LXByb3BoaXQtc2VudGltZW50IiwiL2hpc3RvcmljYWwvbWFya2V0LXByb3BoaXQtc2VudGltZW50IiwiL2hpc3RvcmljYWwvZGFpbHktbWFya2V0LXByb3BoaXQtc2VudGltZW50IiwiL3JlYWwtdGltZS9tYXJrZXQtcHJvcGhpdC1zZW50aW1lbnQtbW92aW5nLWF2ZXJhZ2UiLCIvaGlzdG9yaWNhbC9tYXJrZXQtcHJvcGhpdC1zZW50aW1lbnQtbW92aW5nLWF2ZXJhZ2UiLCIvaGlzdG9yaWNhbC9kYWlseS1tYXJrZXQtcHJvcGhpdC1zZW50aW1lbnQtbW92aW5nLWF2ZXJhZ2UiLCIvcmVhbC10aW1lL2Nyb3dkLXNlbnRpbWVudC16LXNjb3JlIiwiL2hpc3RvcmljYWwvY3Jvd2Qtc2VudGltZW50LXotc2NvcmUiLCIvaGlzdG9yaWNhbC9kYWlseS1jcm93ZC1zZW50aW1lbnQtei1zY29yZSIsIi9yZWFsLXRpbWUvY3Jvd2Qtc2VudGltZW50LXotc2NvcmUtbW92aW5nLWF2ZXJhZ2UiLCIvaGlzdG9yaWNhbC9jcm93ZC1zZW50aW1lbnQtei1zY29yZS1tb3ZpbmctYXZlcmFnZSIsIi9oaXN0b3JpY2FsL2RhaWx5LWNyb3dkLXNlbnRpbWVudC16LXNjb3JlLW1vdmluZy1hdmVyYWdlIiwiL3JlYWwtdGltZS9tYXJrZXQtcHJvcGhpdC1zZW50aW1lbnQtei1zY29yZSIsIi9oaXN0b3JpY2FsL21hcmtldC1wcm9waGl0LXNlbnRpbWVudC16LXNjb3JlIiwiL2hpc3RvcmljYWwvZGFpbHktbWFya2V0LXByb3BoaXQtc2VudGltZW50LXotc2NvcmUiLCIvcmVhbC10aW1lL21hcmtldC1wcm9waGl0LXNlbnRpbWVudC16LXNjb3JlLW1vdmluZy1hdmVyYWdlIiwiL2hpc3RvcmljYWwvbWFya2V0LXByb3BoaXQtc2VudGltZW50LXotc2NvcmUtbW92aW5nLWF2ZXJhZ2UiLCIvaGlzdG9yaWNhbC9kYWlseS1tYXJrZXQtcHJvcGhpdC1zZW50aW1lbnQtei1zY29yZS1tb3ZpbmctYXZlcmFnZSIsIi9yZWFsLXRpbWUvdHdlZXQtdm9sdW1lIiwiL2hpc3RvcmljYWwvdHdlZXQtdm9sdW1lIiwiL2hpc3RvcmljYWwvZGFpbHktdHdlZXQtdm9sdW1lIiwiL3JlYWwtdGltZS90d2VldC1idXp6IiwiL2hpc3RvcmljYWwvdHdlZXQtYnV6eiIsIi9oaXN0b3JpY2FsL2RhaWx5LXR3ZWV0LWJ1enoiLCIvcmVhbC10aW1lL3VzZXItc2VudGltZW50IiwiL3JlYWwtdGltZS91c2VyLXNlbnRpbWVudC1sYXN0LW1pbnV0ZSIsIi9oaXN0b3JpY2FsL3VzZXItc2VudGltZW50LWJ5LXVzZXIiLCIvaGlzdG9yaWNhbC91c2VyLXNlbnRpbWVudC1ieS10aWNrZXIiLCIvaGlzdG9yaWNhbC91c2VyLXNjb3JlcyIsIi9oaXN0b3JpY2FsL3VzZXItc2NvcmVzLWxhc3QiLCIvaGlzdG9yaWNhbC9kYWlseS11c2VyLXNjb3Jlcy1ieS11c2VyIiwiL2hpc3RvcmljYWwvdGlja2VyLXNwZWNpZmljLXVzZXItc2NvcmVzIiwiL2hpc3RvcmljYWwvdGlja2VyLXNwZWNpZmljLXVzZXItc2NvcmVzLWJ5LXVzZXIiLCIvaGlzdG9yaWNhbC90aWNrZXItc3BlY2lmaWMtdXNlci1zY29yZXMtYnktdGlja2VyIiwiL2hpc3RvcmljYWwvc2VjdG9yLXNwZWNpZmljLXVzZXItc2NvcmVzIiwiL2hpc3RvcmljYWwvc2VjdG9yLXNwZWNpZmljLXVzZXItc2NvcmVzLWJ5LXVzZXIiLCIvaGlzdG9yaWNhbC9zZWN0b3Itc3BlY2lmaWMtdXNlci1zY29yZXMtYnktc2VjdG9yIiwiL2hpc3RvcmljYWwvdGlja2VyLXNwZWNpZmljLXVzZXItcmV0dXJucyIsIi9oaXN0b3JpY2FsL3RpY2tlci1zcGVjaWZpYy11c2VyLXJldHVybnMtYnktdXNlciIsIi9oaXN0b3JpY2FsL3RpY2tlci1zcGVjaWZpYy11c2VyLXJldHVybnMtYnktdGlja2VyIiwiL2hpc3RvcmljYWwvc2VjdG9yLXNwZWNpZmljLXVzZXItcmV0dXJucyIsIi9oaXN0b3JpY2FsL3NlY3Rvci1zcGVjaWZpYy11c2VyLXJldHVybnMtYnktdXNlciIsIi9oaXN0b3JpY2FsL3NlY3Rvci1zcGVjaWZpYy11c2VyLXJldHVybnMtYnktc2VjdG9yIl0sInN0cmVhbWluZ19lbmRwb2ludF9wYXRocyI6WyJjcm93ZC1zZW50aW1lbnQiLCJ1c2VyLXNlbnRpbWVudCIsIm1hcmtldC1wcm9waGl0LXNlbnRpbWVudCIsImNyb3dkLXNlbnRpbWVudC1jaGFydC1kYXRhIiwibWFya2V0LXByb3BoaXQtc2VudGltZW50LWNoYXJ0LWRhdGEiXSwidGlja2VycyI6W10sInJhdGVfbGltaXRfY291bnQiOjQsInJhdGVfbGltaXQiOjAsInRyaWFsIjp0cnVlLCJhY3RpdmUiOnRydWUsImdyb3VwIjoiYWRtaW4iLCJvYmplY3QiOiJ1c2VyIiwiaWQiOiI1M2NlYjVlZDg2ODE4YTE5N2JhOGVjMjAifQ.xrZJz4LeOqMThMLwIBh64SaZR6gem65EEMEsWtCo808"
}
JSON Web Token (JWT) is a means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is digitally signed or MACed using JSON Web Signature (JWS) and/or encrypted using JSON Web Encryption (JWE). – IETF
Returns response headers such as:
Returns response such as:
JSON Web Token (JWT) is a means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is digitally signed or MACed using JSON Web Signature (JWS) and/or encrypted using JSON Web Encryption (JWE). – IETF
In order to communicate over websockets with Market Prophit API endpoints, you must pass a valid JWT.
The flow of communication with the Market Prophit websocket server is as follows:
- Retrieve a JWT using your secret API key (do not expose your secret API key, set up your own
/jwt
route on your server and send a server-side request to our/jwt
route with your secret key – basically create a proxy route) - Pass the JWT as part of the request query object while connecting to the Market Prophit websocket server as the param
token
. - Every (5) hours from when the JWT was generated, re-generate a new JWT since the previous expires
HTTP Request
POST https://open.marketprophit.com/jwt
Streaming Intraday Data
Get Crowd Sentiment
Stream of one minute records for all tickers with data (AVG CROWD SENTIMENT).
Path | Frequency | Payload |
---|---|---|
crowd-sentiment | every minute | ts , ticker , crowd_sentiment |
Returns response such as (limited
results
for brevity):
{ "path": "crowd-sentiment", "params": {}, "timestamp": "2014-09-15T05:06:01.321Z", "results": [ { "ts": "2014-09-15T09:04:00.000Z", "ticker": "ANY", "crowd_sentiment": "-0.0337734249681757" }, { "ts": "2014-09-15T09:04:00.000Z", "ticker": "CMGO", "crowd_sentiment": "0.2301403504966760" }, { "ts": "2014-09-15T09:04:00.000Z", "ticker": "CSCO", "crowd_sentiment": "-0.0511838856522857" }, { "ts": "2014-09-15T09:04:00.000Z", "ticker": "EURAUD", "crowd_sentiment": "0.2983217845157061" }, { "ts": "2014-09-15T09:04:00.000Z", "ticker": "FSD", "crowd_sentiment": "0.6361262297611769" } ] }
Get User Sentiment
Stream of consolidated one second records for all tickers with data (RAW USER SENTIMENT).
Path | Frequency | Payload |
---|---|---|
user-sentiment | every second | ts , user_id , ticker , sentiment , user_score |
Returns response such as (limited
results
for brevity):
{ "path": "user-sentiment", "params": {}, "timestamp": "2014-09-15T05:00:51.390Z", "results": [ { "ts": "2014-09-15T09:00:30.000Z", "user_id": "2243075472", "ticker": "JABA", "sentiment": "0.067644772321236", "user_score": "0.0348298733495368" } ] }
Get Market Prophit Sentiment
Stream of one second records for all tickers with data (MP SENTIMENT).
Path | Frequency | Payload |
---|---|---|
market-prophit-sentiment | every second | ts , ticker , mp_sentiment |
Returns response such as (limited
results
for brevity):
{ "path": "market-prophit-sentiment", "params": {}, "timestamp": "2014-09-15T05:03:05.458Z", "results": [] }
Streaming Intraday Bundled Chart Data
Pushes the complete set of user sentiment records for all tickers and users for the most recent full second of data.
Get Crowd Sentiment Chart Data
Stream of latest consolidated one minute records for all tickers with data.
Path | Frequency | Payload |
---|---|---|
crowd-sentiment-chart-data | every minute | ts , ticker , crowd_sentiment , crowd_sentiment_moving_average , crowd_sentiment_z_score , crowd_sentiment_z_score_moving_avg , volume , buzz |
Returns response such as (limited
results
for brevity):
{ "path": "crowd-sentiment-chart-data", "params": {}, "timestamp": "2014-09-15T04:58:00.404Z", "results": [ { "ts": "2014-09-15T08:56:00.000Z", "ticker": "TSLA", "crowd_sentiment": "0.6908441588708437", "crowd_sentiment_moving_average": "0.0472162020321326", "crowd_sentiment_z_score": "-1.4353067630458214", "crowd_sentiment_z_score_moving_average": "0.0068693110284658", "volume": "1", "buzz": "0.7897299690128375" } ] }
Get Market Prophit Sentiment Chart Data
Stream of latest consolidated one second records for all tickers with data.
Path | Frequency | Payload |
---|---|---|
market-prophit-sentiment-chart-data | every second | ts , ticker , mp_sentiment , mp_sentiment_moving_average , mp_sentiment_z_score , mp_sentiment_z_score_moving_avg |
Returns response such as (limited
results
for brevity):
{ "path": "market-prophit-sentiment-chart-data", "params": {}, "timestamp": "2014-09-15T05:04:17.963Z", "results": [] }
Intraday Bundled Chart Data
Returns a complete range of historical intraday records for a given ticker based on a date range (start date, end date).
Crowd Sentiment Chart Datacurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/crowd-sentiment-chart-data?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 1020772
ETag: W/"f9364-2096026610"
set-cookie: igloo=s%3Ab8-aaaig8KZQ45EMSqaVgXpd63odlz9v.TdW%2FjbBhkMIa0g%2BT70yPXlqtjnNOXeBJ9uHHrv6fbDA; Path=/; Expires=Thu, 04 Sep 2014 21:05:54 GMT; HttpOnly
X-Response-Time: 35084.21509ms
Date: Wed, 03 Sep 2014 21:05:53 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-26T08:00:00.000Z",
"ticker": "AAPL",
"crowd_sentiment": "0.0096442612293301",
"crowd_sentiment_moving_average": "0.0472162020321326",
"crowd_sentiment_z_score": "-1.4353067630458214",
"crowd_sentiment_z_score_moving_average": "0.0068693110284658",
"volume": "1",
"buzz": "0.4655859321335315"
},
{
"ts": "2014-08-26T08:03:00.000Z",
"ticker": "AAPL",
"crowd_sentiment": "0.1814690181269212",
"crowd_sentiment_moving_average": "0.0393281377346668",
"crowd_sentiment_z_score": "-1.4353067630458214",
"crowd_sentiment_z_score_moving_average": "0.0068693110284658",
"volume": "2",
"buzz": "0.9311718642670630"
},
{
"ts": "2014-08-26T08:09:00.000Z",
"ticker": "AAPL",
"crowd_sentiment": "-0.1409181494437186",
"crowd_sentiment_moving_average": "0.0570957477836986",
"crowd_sentiment_z_score": "-1.4353067630458214",
"crowd_sentiment_z_score_moving_average": "0.0068693110284658",
"volume": "1",
"buzz": "0.4655859321335315"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical consolidated one minute records
HTTP Request
GET https://open.marketprophit.com/historical/crowd-sentiment-chart-data
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago from yesterday (limited to 7 days max start-end range) |
end_date | End date range (MM-DD-YYYY) | no | yesterday (limited to 7 days max start-end range) |
Market Prophit Sentiment Chart Datacurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/market-prophit-sentiment-chart-data?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 791827
ETag: W/"c1513-244391099"
set-cookie: igloo=s%3A_Ao8-T9ECybFXYft1LBAtg_pCWz6wQZ_.i9m23lTBY1SBO4RWsQJvfJcAWD9ARZPbMn2oluBVdxs; Path=/; Expires=Thu, 04 Sep 2014 21:06:08 GMT; HttpOnly
X-Response-Time: 47849.48164ms
Date: Wed, 03 Sep 2014 21:06:08 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-26T08:21:27.000Z",
"ticker": "AAPL",
"mp_sentiment": "0.0640749800780658",
"mp_sentiment_moving_average": "0.0317689117273811",
"mp_sentiment_z_score": "1.2924519236334542",
"mp_sentiment_z_score_moving_average": "0.0068693110284658"
},
{
"ts": "2014-08-26T10:45:02.000Z",
"ticker": "AAPL",
"mp_sentiment": "0.0710010821847628",
"mp_sentiment_moving_average": "0.0317689117273811",
"mp_sentiment_z_score": "1.2924519236334542",
"mp_sentiment_z_score_moving_average": "0.0068693110284658"
},
{
"ts": "2014-08-26T11:25:45.000Z",
"ticker": "AAPL",
"mp_sentiment": "0.0106183761868529",
"mp_sentiment_moving_average": "0.0317689117273811",
"mp_sentiment_z_score": "1.2924519236334542",
"mp_sentiment_z_score_moving_average": "0.0068693110284658"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical consolidated one second records.
HTTP Request
GET https://open.marketprophit.com/historical/market-prophit-sentiment-chart-data
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago from yesterday (limited to 7 days max start-end range) |
end_date | End date range (MM-DD-YYYY) | no | yesterday (limited to 7 days max start-end range) |
Daily Bundled Chart Data
Returns a complete range of historical daily records for a given ticker based on a date range (start date, end date).
Daily Crowd Sentiment Chart Datacurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-crowd-sentiment-chart-data?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 74862
ETag: W/"1246e-4172623629"
set-cookie: igloo=s%3AWQUKfl4Ky4LhMjrafNqTe22rfSCA2SGu.P0lTZLprIB39wBXe%2BK0jmcvQP8FYjeqKsgy8owQdbc8; Path=/; Expires=Thu, 04 Sep 2014 21:05:48 GMT; HttpOnly
X-Response-Time: 28156.28194ms
Date: Wed, 03 Sep 2014 21:05:47 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-09-03T04:00:00.000Z",
"ticker": "AAPL",
"crowd_sentiment": "-0.0126064047303888",
"crowd_sentiment_moving_average": "0.0372128063117339",
"crowd_sentiment_z_score": "-1.4353067630458214",
"crowd_sentiment_z_score_moving_average": "0.0068693110284658",
"volume": "1114",
"buzz": "0.9207910178289327"
},
{
"ts": "2013-09-04T04:00:00.000Z",
"ticker": "AAPL",
"crowd_sentiment": "0.0651780828663888",
"crowd_sentiment_moving_average": "0.0334003281410289",
"crowd_sentiment_z_score": "0.8884218438623824",
"crowd_sentiment_z_score_moving_average": "-0.1095109573098801",
"volume": "1659",
"buzz": "1.1353296784216074"
},
{
"ts": "2013-09-05T04:00:00.000Z",
"ticker": "AAPL",
"crowd_sentiment": "0.0087030297466099",
"crowd_sentiment_moving_average": "0.0367511563869996",
"crowd_sentiment_z_score": "-0.7912412280133767",
"crowd_sentiment_z_score_moving_average": "-0.0321145941304713",
"volume": "1056",
"buzz": "0.8940075442868701"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical consolidated daily records
HTTP Request
GET https://open.marketprophit.com/historical/daily-crowd-sentiment-chart-data
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 year ago from yesterday (limited to 5 years max start-end range) |
end_date | End date range (MM-DD-YYYY) | no | yesterday (limited to 5 years max start-end range) |
Daily Market Prophit Sentiment Chart Datacurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-market-prophit-sentiment-chart-data?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 46292
ETag: W/"b4d4-3643036842"
set-cookie: igloo=s%3AuCX0DQWvaj1V0JXHLrlVapzyI_C3DJOW.KkZaDtKd4VKMTJGyTgbJnvC9J6nriB1Y8DiIPMp8uMQ; Path=/; Expires=Thu, 04 Sep 2014 21:05:54 GMT; HttpOnly
X-Response-Time: 34462.14427ms
Date: Wed, 03 Sep 2014 21:05:53 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-25T05:00:00.000Z",
"ticker": "AAPL",
"mp_sentiment": "0.0317689117273811",
"mp_sentiment_moving_average": "0.0317689117273811",
"mp_sentiment_z_score": "1.2924519236334542",
"mp_sentiment_z_score_moving_average": "0.0068693110284658"
},
{
"ts": "2013-11-26T05:00:00.000Z",
"ticker": "AAPL",
"mp_sentiment": "0.0423878809037944",
"mp_sentiment_moving_average": "0.0317689117273811",
"mp_sentiment_z_score": "1.2924519236334542",
"mp_sentiment_z_score_moving_average": "0.0068693110284658"
},
{
"ts": "2013-11-27T05:00:00.000Z",
"ticker": "AAPL",
"mp_sentiment": "0.0482955213890253",
"mp_sentiment_moving_average": "0.0370783963155878",
"mp_sentiment_z_score": "1.2924519236334542",
"mp_sentiment_z_score_moving_average": "0.0068693110284658"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical consolidated one second records.
HTTP Request
GET https://open.marketprophit.com/historical/daily-market-prophit-sentiment-chart-data
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 year ago from yesterday (limited to 5 years max start-end range) |
end_date | End date range (MM-DD-YYYY) | no | yesterday (limited to 5 years max start-end range) |
Crowd Sentiment
Crowd Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/crowd-sentiment?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 913
ETag: W/"391-3060856762"
set-cookie: igloo=s%3Afj5AKmWm8AzpPg6Q9Bb14TJeQRE44upL.T1UjqdZgHkivydkw1TK%2FJ6LHCSznA7KpUBQMlzPzbBQ; Path=/; Expires=Wed, 13 Aug 2014 21:37:30 GMT; HttpOnly
X-Response-Time: 153.75379ms
Date: Tue, 12 Aug 2014 21:37:30 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:38:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.3671460543121055"
},
{
"ts": "2014-08-12T20:40:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.1230545641077323"
},
{
"ts": "2014-08-12T20:42:00.000Z",
"ticker": "AAPL",
"average_sentiment": "-0.1019677038794017"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/crowd-sentiment
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Crowd Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/crowd-sentiment?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 915
ETag: W/"393-1015435600"
set-cookie: igloo=s%3AFEXNYWO0rjnFuF5Pu34AZweU2kxEJXCD.Z6yfIb5KpOZ%2BNYwtkCmyD%2FTBOYelO2JD8FyGqcPdF4E; Path=/; Expires=Wed, 13 Aug 2014 21:37:53 GMT; HttpOnly
X-Response-Time: 23069.99628ms
Date: Tue, 12 Aug 2014 21:37:53 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-11T00:02:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.0049161001114379"
},
{
"ts": "2013-08-11T00:04:00.000Z",
"ticker": "AAPL",
"average_sentiment": "-0.3131502832203044"
},
{
"ts": "2013-08-11T00:06:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.2879709290970227"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/crowd-sentiment
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Crowd Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-crowd-sentiment?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 912
ETag: W/"390-748561587"
set-cookie: igloo=s%3AWbKCaYTMska6XSxehHScRT7iTq3X1jCL.yD1UJ1IvMqJOrUK7MLm8vemzq6Fz8Q9YGL1vQG5tc84; Path=/; Expires=Wed, 13 Aug 2014 21:37:38 GMT; HttpOnly
X-Response-Time: 7458.64649ms
Date: Tue, 12 Aug 2014 21:37:37 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-12T04:00:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.0655677621539281"
},
{
"ts": "2013-08-13T04:00:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.0839128251237732"
},
{
"ts": "2013-08-14T04:00:00.000Z",
"ticker": "AAPL",
"average_sentiment": "0.0380635920137041"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily crowd sentiment historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-crowd-sentiment
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Crowd Sentiment Moving Average
Crowd Sentiment Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/crowd-sentiment-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 886
ETag: W/"376-2319470232"
set-cookie: igloo=s%3A1TGFMRI-veVh8EH8SAmUumjSzzbsUTH9.Kxrk1iAfh6gKw3W1S2phFxXLv9BWJ%2BcCWC1zPjs9MoU; Path=/; Expires=Wed, 13 Aug 2014 21:37:30 GMT; HttpOnly
X-Response-Time: 114.22398ms
Date: Tue, 12 Aug 2014 21:37:30 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:38:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.0207969133106709"
},
{
"ts": "2014-08-12T20:40:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.0065589103823894"
},
{
"ts": "2014-08-12T20:42:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.0203041829188076"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime moving average intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/crowd-sentiment-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Crowd Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/crowd-sentiment-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 881
ETag: W/"371-2214411452"
set-cookie: igloo=s%3AFHr5hXCWnF86Jzn5JwTpbGtp4u_tdUjl.qB6eUNwNM%2BZrjLRv0rBX1AX923rU2mTuLNSD02GiWWQ; Path=/; Expires=Wed, 13 Aug 2014 21:38:34 GMT; HttpOnly
X-Response-Time: 63746.49997ms
Date: Tue, 12 Aug 2014 21:38:30 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-11T00:02:00.000Z",
"ticker": "AAPL",
"moving_average": "0.3139140224709963"
},
{
"ts": "2013-08-11T00:04:00.000Z",
"ticker": "AAPL",
"moving_average": "0.2752892821760515"
},
{
"ts": "2013-08-11T00:06:00.000Z",
"ticker": "AAPL",
"moving_average": "0.2099071082431231"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical moving average intraday data
HTTP Request
GET https://open.marketprophit.com/historical/crowd-sentiment-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Crowd Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-crowd-sentiment-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 881
ETag: W/"371-546909383"
set-cookie: igloo=s%3A1OYT-fh0mBZxd55KLa39h37JbMLsmW94.96%2FqONIOZKznN6EwRKZ689pdTfgtS0f5ZgIQCIxamY0; Path=/; Expires=Wed, 13 Aug 2014 21:37:38 GMT; HttpOnly
X-Response-Time: 7491.25694ms
Date: Tue, 12 Aug 2014 21:37:38 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-26T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0352639338098013"
},
{
"ts": "2013-11-27T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0393013576390539"
},
{
"ts": "2013-11-29T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0469789239912700"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily crowd sentiment moving average historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-crowd-sentiment-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Market Prophit Sentiment
Market Prophit Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/market-prophit-sentiment?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 864
ETag: W/"360-200455438"
set-cookie: igloo=s%3ArLtZetJFOSQO_IxItUcXaTvbp8h81eRx.XL4F7HcJubjNz1te9JqRJVDvqwPd8UemRQFA1Eio2ww; Path=/; Expires=Wed, 13 Aug 2014 21:38:16 GMT; HttpOnly
X-Response-Time: 38239.61660ms
Date: Tue, 12 Aug 2014 21:38:16 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:40:17.000Z",
"ticker": "AAPL",
"signal_value": "-0.3269987433066757"
},
{
"ts": "2014-08-12T20:40:59.000Z",
"ticker": "AAPL",
"signal_value": "-0.2835789439773210"
},
{
"ts": "2014-08-12T20:43:09.000Z",
"ticker": "AAPL",
"signal_value": "-0.1614869778859951"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/market-prophit-sentiment
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Market Prophit Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/market-prophit-sentiment?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 864
ETag: W/"360-2817420536"
set-cookie: igloo=s%3AkZsiDndFGDFEEmpRCY5zOd6Ny4HxoV_s.MftJvBZ%2Bt1Pnt7Uvc0PQqBYFr1DsYa%2F9rvjEHuHgifM; Path=/; Expires=Wed, 13 Aug 2014 21:37:55 GMT; HttpOnly
X-Response-Time: 18009.20488ms
Date: Tue, 12 Aug 2014 21:37:49 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-22T14:32:29.000Z",
"ticker": "AAPL",
"signal_value": "-0.0108788752572931"
},
{
"ts": "2013-11-22T14:32:40.000Z",
"ticker": "AAPL",
"signal_value": "-0.0107582667275593"
},
{
"ts": "2013-11-22T14:33:11.000Z",
"ticker": "AAPL",
"signal_value": "0.0018852081898496"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/market-prophit-sentiment
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Market Prophit Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-market-prophit-sentiment?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 883
ETag: W/"373-791338734"
set-cookie: igloo=s%3AMR6zJdd_NMnLUZLcXqFBSNX9TbQeKeVP.477cf%2ByJ%2Fu19MhqOxGX%2B9nGVTS1%2F3Aixm%2BaAn%2BPVcPo; Path=/; Expires=Wed, 13 Aug 2014 21:38:16 GMT; HttpOnly
X-Response-Time: 38101.44011ms
Date: Tue, 12 Aug 2014 21:38:16 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-25T05:00:00.000Z",
"ticker": "AAPL",
"average_signal": "0.0352639338098013"
},
{
"ts": "2013-11-26T05:00:00.000Z",
"ticker": "AAPL",
"average_signal": "0.0433387814683065"
},
{
"ts": "2013-11-27T05:00:00.000Z",
"ticker": "AAPL",
"average_signal": "0.0623340566957021"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily market prophit sentiment historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-market-prophit-sentiment
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Market Prophit Sentiment Moving Average
Market Prophit Sentiment Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/market-prophit-sentiment-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 890
ETag: W/"37a-3487263693"
set-cookie: igloo=s%3A48b4MFGLRHu2mHL60mHKSw2QV5k9M4cH.usSXpHsXqObu9AfWz20c9DO%2Ff0tnjCy%2F1SShlbT98yo; Path=/; Expires=Wed, 13 Aug 2014 21:38:06 GMT; HttpOnly
X-Response-Time: 28466.26857ms
Date: Tue, 12 Aug 2014 21:38:06 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:40:17.000Z",
"ticker": "AAPL",
"moving_average": "0.0343214563403923"
},
{
"ts": "2014-08-12T20:40:59.000Z",
"ticker": "AAPL",
"moving_average": "-0.0018105636243144"
},
{
"ts": "2014-08-12T20:43:09.000Z",
"ticker": "AAPL",
"moving_average": "-0.0274258709291332"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/market-prophit-sentiment-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Market Prophit Sentiment Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/market-prophit-sentiment-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 885
ETag: W/"375-4254437911"
set-cookie: igloo=s%3AXeHNYA92HaPSX5WXvCyl3vMnebfrLXaJ.Rs0lfaE2wuJt7uglBNVX2uJe%2B5%2BZKTQEF024QqSpTJ0; Path=/; Expires=Wed, 13 Aug 2014 21:38:42 GMT; HttpOnly
X-Response-Time: 58064.30439ms
Date: Tue, 12 Aug 2014 21:38:42 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-22T14:32:40.000Z",
"ticker": "AAPL",
"moving_average": "-0.0108788752572931"
},
{
"ts": "2013-11-22T14:33:11.000Z",
"ticker": "AAPL",
"moving_average": "-0.0108185709924262"
},
{
"ts": "2013-11-22T14:34:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.0065839779316676"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/market-prophit-sentiment-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Market Prophit Sentiment Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-market-prophit-sentiment-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 881
ETag: W/"371-546909383"
set-cookie: igloo=s%3AyXwG0pn0z8vN6qPixLcRE8TJqnxD2pZy.fmq6LVj3N4z56ml56jRIRps121UbQUyKw%2FXBFkLQlf4; Path=/; Expires=Wed, 13 Aug 2014 21:39:01 GMT; HttpOnly
X-Response-Time: 76726.16608ms
Date: Tue, 12 Aug 2014 21:39:01 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-26T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0352639338098013"
},
{
"ts": "2013-11-27T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0393013576390539"
},
{
"ts": "2013-11-29T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0469789239912700"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily market prophit sentiment moving average historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-market-prophit-sentiment-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Crowd Sentiment Z-Score
Crowd Sentiment Z-Scorecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/crowd-sentiment-z-score?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 816
ETag: W/"330-3899174977"
set-cookie: igloo=s%3AzLZtn86kDTYpN-XRdYtqx45E9kr74m6n.nQKzGpcalHu5TYPtdgS8%2BFfBlvw%2BhP9ogPYb5jx%2B01M; Path=/; Expires=Wed, 13 Aug 2014 21:37:30 GMT; HttpOnly
X-Response-Time: 222.73015ms
Date: Tue, 12 Aug 2014 21:37:30 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:38:00.000Z",
"ticker": "AAPL",
"z_score": "1.2924519236334542"
},
{
"ts": "2014-08-12T20:40:00.000Z",
"ticker": "AAPL",
"z_score": "0.4138185791093830"
},
{
"ts": "2014-08-12T20:42:00.000Z",
"ticker": "AAPL",
"z_score": "-0.2696687267340823"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/crowd-sentiment-z-score
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Crowd Sentiment Z-Scorecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/crowd-sentiment-z-score?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 819
ETag: W/"333-3709267225"
set-cookie: igloo=s%3AA-nGKaFBa0mi8z7RKzsOpWpR3ZPrstjP.r%2FLWyghqktXXkyXe03r3fZy%2BIWBtQP2jm4CP43dKtBY; Path=/; Expires=Wed, 13 Aug 2014 21:38:13 GMT; HttpOnly
X-Response-Time: 35176.02233ms
Date: Tue, 12 Aug 2014 21:38:06 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-11T00:07:00.000Z",
"ticker": "AAPL",
"z_score": "0.7338374164852608"
},
{
"ts": "2013-08-11T00:08:00.000Z",
"ticker": "AAPL",
"z_score": "-0.6298024407780379"
},
{
"ts": "2013-08-11T00:09:00.000Z",
"ticker": "AAPL",
"z_score": "-0.8079052313763703"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/crowd-sentiment-z-score
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Crowd Sentiment Z-Scorecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-crowd-sentiment-z-score?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 814
ETag: W/"32e-3189631072"
set-cookie: igloo=s%3A4AudOx7G2rDQET3-8sVO89MyRte_GQ2R.Gp3Ds7nuRRVNIWXUTf7lg7T14TBkEnOkQRNyIB6WoEE; Path=/; Expires=Wed, 13 Aug 2014 21:37:37 GMT; HttpOnly
X-Response-Time: 6450.37407ms
Date: Tue, 12 Aug 2014 21:37:37 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-12T04:00:00.000Z",
"ticker": "AAPL",
"z_score": "1.0503527659059142"
},
{
"ts": "2013-08-13T04:00:00.000Z",
"ticker": "AAPL",
"z_score": "1.5653893143069957"
},
{
"ts": "2013-08-14T04:00:00.000Z",
"ticker": "AAPL",
"z_score": "0.1691821954858430"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily crowd sentiment z-score historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-crowd-sentiment-z-score
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Crowd Sentiment Z-Score Moving Average
Crowd Sentiment Z-Score Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/crowd-sentiment-z-score-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 885
ETag: W/"375-2412754791"
set-cookie: igloo=s%3AnlnfEnSHfvb_CO0vq8z0DlZPL6WI0q4h.2MByLBmfkrx6MTZ1BEd8wjihSflWmgkitBYJgfZrqGs; Path=/; Expires=Wed, 13 Aug 2014 21:37:38 GMT; HttpOnly
X-Response-Time: 7551.68931ms
Date: Tue, 12 Aug 2014 21:37:38 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:38:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.0248249992633161"
},
{
"ts": "2014-08-12T20:40:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0265871292470387"
},
{
"ts": "2014-08-12T20:42:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.0222608311400150"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/crowd-sentiment-z-score-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Crowd Sentiment Z-Score Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/crowd-sentiment-z-score-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 889
ETag: W/"379-2525490719"
set-cookie: igloo=s%3AcEQ_sXoCrzltCQPgf_nV6gB7gvI6xgln.pRxCEA6JoR2df5V11FO%2B%2BoEeBIiUx7LqGZfng%2FIIf6c; Path=/; Expires=Wed, 13 Aug 2014 21:37:36 GMT; HttpOnly
X-Response-Time: 6405.81668ms
Date: Tue, 12 Aug 2014 21:37:30 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-11T00:08:00.000Z",
"ticker": "AAPL",
"moving_average": "0.7338374164852608"
},
{
"ts": "2013-08-11T00:09:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0520174878536114"
},
{
"ts": "2013-08-11T00:10:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.2346234185563825"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/crowd-sentiment-z-score-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Crowd Sentiment Z-Score Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-crowd-sentiment-z-score-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 881
ETag: W/"371-3237205047"
set-cookie: igloo=s%3AnH9GzRFooLmthJRi9wEVsXbbKPrzOQD1.Yj9vvH0IZU5QraAYJY4jFwZMgza8aUG%2FDTooYt9OB34; Path=/; Expires=Wed, 13 Aug 2014 21:37:37 GMT; HttpOnly
X-Response-Time: 7240.37982ms
Date: Tue, 12 Aug 2014 21:37:37 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-12T04:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.0648624193767667"
},
{
"ts": "2013-08-13T04:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.2077552673683673"
},
{
"ts": "2013-08-14T04:00:00.000Z",
"ticker": "AAPL",
"moving_average": "0.2298030781046750"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily crowd sentiment z-score moving average historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-crowd-sentiment-z-score-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Market Prophit Sentiment Z-Score
Market Prophit Sentiment Z-Scorecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/market-prophit-sentiment-z-score?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 813
ETag: W/"32d-4134144347"
set-cookie: igloo=s%3AWWBfykqtJdN3bJQtZCHUqyZFIsjmyjPJ.5Okpp8DG%2FHpXtINndJv1kHxXpQPFmGgAd%2Bfhy%2FkSikg; Path=/; Expires=Wed, 13 Aug 2014 21:37:38 GMT; HttpOnly
X-Response-Time: 7353.80293ms
Date: Tue, 12 Aug 2014 21:37:38 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:40:59.000Z",
"ticker": "AAPL",
"z_score": "-1.0713766961862381"
},
{
"ts": "2014-08-12T20:43:09.000Z",
"ticker": "AAPL",
"z_score": "-0.5087398426143930"
},
{
"ts": "2014-08-12T21:01:59.000Z",
"ticker": "AAPL",
"z_score": "0.4786645856414883"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/market-prophit-sentiment-z-score
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Market Prophit Sentiment Z-Scorecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/market-prophit-sentiment-z-score?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 816
ETag: W/"330-628605541"
set-cookie: igloo=s%3AI4WqEl_XPu0KN4yAdYmEgJl9Az-QYDtU.tAKrFDmjGOJtUmRuOgkFtEJdisZm70vvx24xCQe%2BHa8; Path=/; Expires=Wed, 13 Aug 2014 21:38:02 GMT; HttpOnly
X-Response-Time: 21057.09100ms
Date: Tue, 12 Aug 2014 21:37:57 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-22T14:49:24.000Z",
"ticker": "AAPL",
"z_score": "1.0834075938524095"
},
{
"ts": "2013-11-22T14:50:02.000Z",
"ticker": "AAPL",
"z_score": "-0.2955902319399066"
},
{
"ts": "2013-11-22T14:50:35.000Z",
"ticker": "AAPL",
"z_score": "-0.5534541101165534"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/market-prophit-sentiment-z-score
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Market Prophit Sentiment Z-Scorecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-market-prophit-sentiment-z-score?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 820
ETag: W/"334-3791395631"
set-cookie: igloo=s%3AqF-D_5gHyX-jo18U-9AdysdHUI3I0vlN.GCpd2aJn8ZWMOXvFmeGG0xr4oZPg3ECWALrWuEC8N6M; Path=/; Expires=Wed, 13 Aug 2014 21:37:57 GMT; HttpOnly
X-Response-Time: 15991.27487ms
Date: Tue, 12 Aug 2014 21:37:57 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-12-10T05:00:00.000Z",
"ticker": "AAPL",
"z_score": "-0.2897166169738399"
},
{
"ts": "2013-12-11T05:00:00.000Z",
"ticker": "AAPL",
"z_score": "-1.3816770364071458"
},
{
"ts": "2013-12-12T05:00:00.000Z",
"ticker": "AAPL",
"z_score": "-2.8879537044819480"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily market prophit sentiment z-score historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-market-prophit-sentiment-z-score
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Market Prophit Sentiment Z-Score Moving Average
Market Prophit Sentiment Z-Score Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/market-prophit-sentiment-z-score-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 885
ETag: W/"375-1801421241"
set-cookie: igloo=s%3A2n3glcbdKRuNp8S5QeKuqvWeY31hJAz8.7je2gACehVUffe4ANxGIJGqSwaJiBLBcuon2a3XvX4M; Path=/; Expires=Wed, 13 Aug 2014 21:38:14 GMT; HttpOnly
X-Response-Time: 37079.56527ms
Date: Tue, 12 Aug 2014 21:38:06 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:40:59.000Z",
"ticker": "AAPL",
"moving_average": "0.3496555355758420"
},
{
"ts": "2014-08-12T20:43:09.000Z",
"ticker": "AAPL",
"moving_average": "0.1917630653800553"
},
{
"ts": "2014-08-12T21:01:59.000Z",
"ticker": "AAPL",
"moving_average": "-0.7900582694003155"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/market-prophit-sentiment-z-score-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Market Prophit Sentiment Z-Score Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/market-prophit-sentiment-z-score-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 885
ETag: W/"375-1400004794"
set-cookie: igloo=s%3AzCGPmJ6Z0zMlPkwa2P2HDJgb_eVVitqw.tdC32c4X0pFaCXUS78TU%2Fbn634JluENPto8qd80bZu0; Path=/; Expires=Wed, 13 Aug 2014 21:38:09 GMT; HttpOnly
X-Response-Time: 27931.95247ms
Date: Tue, 12 Aug 2014 21:38:09 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-22T14:50:02.000Z",
"ticker": "AAPL",
"moving_average": "1.0834075938524095"
},
{
"ts": "2013-11-22T14:50:35.000Z",
"ticker": "AAPL",
"moving_average": "0.3939086809562514"
},
{
"ts": "2013-11-22T14:50:41.000Z",
"ticker": "AAPL",
"moving_average": "0.0781210839319831"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/market-prophit-sentiment-z-score-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Market Prophit Sentiment Z-Score Moving Averagecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-market-prophit-sentiment-z-score-moving-average?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 891
ETag: W/"37b-1536825688"
set-cookie: igloo=s%3AmZX1syKsOw2zRb4esvx4TrSMTRIQvWag.%2BORlWotsiTpNpKfURSQOi8i8cc%2BvbwebC%2B8RYjN%2BCqA; Path=/; Expires=Wed, 13 Aug 2014 21:37:57 GMT; HttpOnly
X-Response-Time: 15934.11625ms
Date: Tue, 12 Aug 2014 21:37:57 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-12-11T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.2897166169738399"
},
{
"ts": "2013-12-12T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "-0.8356968266904928"
},
{
"ts": "2013-12-13T05:00:00.000Z",
"ticker": "AAPL",
"moving_average": "-1.5197824526209778"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily market prophit sentiment z-score moving average historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-market-prophit-sentiment-z-score-moving-average
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Tweet Volume
Tweet Volumecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/tweet-volume?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 631
ETag: W/"277-34249800"
set-cookie: igloo=s%3AnzHyxrpuc-cAW7Qdr8h5GIAdWPAFuHHt.b00PBhE4p7lQfBDopuUK6FG01sCA6Gx2QvLAbiLwq5c; Path=/; Expires=Wed, 13 Aug 2014 21:38:05 GMT; HttpOnly
X-Response-Time: 23414.95495ms
Date: Tue, 12 Aug 2014 21:38:05 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:40:00.000Z",
"ticker": "AAPL",
"volume": "2"
},
{
"ts": "2014-08-12T20:42:00.000Z",
"ticker": "AAPL",
"volume": "1"
},
{
"ts": "2014-08-12T20:43:00.000Z",
"ticker": "AAPL",
"volume": "2"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/tweet-volume
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Tweet Volumecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/tweet-volume?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 631
ETag: W/"277-1857318721"
set-cookie: igloo=s%3AAQNyqOr7DYvrYbqMFQ3fgb0apCYlqSuJ.09vwpYezlcyRH943BVpdMLR%2F3KKeg%2BCs3zTKMmouL3w; Path=/; Expires=Wed, 13 Aug 2014 21:39:07 GMT; HttpOnly
X-Response-Time: 89227.76448ms
Date: Tue, 12 Aug 2014 21:39:07 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-11T00:02:00.000Z",
"ticker": "AAPL",
"volume": "1"
},
{
"ts": "2013-08-11T00:04:00.000Z",
"ticker": "AAPL",
"volume": "2"
},
{
"ts": "2013-08-11T00:06:00.000Z",
"ticker": "AAPL",
"volume": "1"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/tweet-volume
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Tweet Volumecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-tweet-volume?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 661
ETag: W/"295-308048723"
set-cookie: igloo=s%3AjxMjrrHXko_sOMA4dtkUMfEonf7gw77d.n5OrYgqcac2Shd8GHiLltGjFsiHT9iE2LU2nc5T6phQ; Path=/; Expires=Wed, 13 Aug 2014 21:38:05 GMT; HttpOnly
X-Response-Time: 23469.32991ms
Date: Tue, 12 Aug 2014 21:38:05 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-12T04:00:00.000Z",
"ticker": "AAPL",
"volume": "1300"
},
{
"ts": "2013-08-13T04:00:00.000Z",
"ticker": "AAPL",
"volume": "4019"
},
{
"ts": "2013-08-14T04:00:00.000Z",
"ticker": "AAPL",
"volume": "3246"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily tweet volume historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-tweet-volume
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Tweet Buzz
Tweet Buzzcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/tweet-buzz?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 781
ETag: W/"30d-3453040483"
set-cookie: igloo=s%3AqkYTRifAnVGRI7_FUKDsl3qDj84IqE0l.63JF608FdxZutWfd%2B7m4ngIk0t%2FgMwAtoMs8Xx%2B%2FTzo; Path=/; Expires=Wed, 13 Aug 2014 21:37:57 GMT; HttpOnly
X-Response-Time: 15865.47433ms
Date: Tue, 12 Aug 2014 21:37:57 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-12T20:40:00.000Z",
"ticker": "AAPL",
"buzz": "1.1761719411067892"
},
{
"ts": "2014-08-12T20:42:00.000Z",
"ticker": "AAPL",
"buzz": "0.5880859705533946"
},
{
"ts": "2014-08-12T20:43:00.000Z",
"ticker": "AAPL",
"buzz": "1.1761719411067892"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Realtime intraday data
HTTP Request
GET https://open.marketprophit.com/real-time/tweet-buzz
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
Historical Tweet Buzzcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/tweet-buzz?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 781
ETag: W/"30d-3998987039"
set-cookie: igloo=s%3APFo9OrqqC-j6NNkZjHpVzEEdf-qbkbm-.mrR2IyNzzQBYjNMZV1Vowm6rAe2mphHRtBCfEvyqSmo; Path=/; Expires=Wed, 13 Aug 2014 21:39:16 GMT; HttpOnly
X-Response-Time: 91404.59397ms
Date: Tue, 12 Aug 2014 21:39:12 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-11T00:02:00.000Z",
"ticker": "AAPL",
"buzz": "0.5958289885297187"
},
{
"ts": "2013-08-11T00:04:00.000Z",
"ticker": "AAPL",
"buzz": "1.1916579770594373"
},
{
"ts": "2013-08-11T00:06:00.000Z",
"ticker": "AAPL",
"buzz": "0.5958289885297187"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Historical intraday data
HTTP Request
GET https://open.marketprophit.com/historical/tweet-buzz
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | ISO-8601 timestamp | no | last year from previous biz day |
end_ts | ISO-8601 timestamp | no | yesterday |
Daily Tweet Buzzcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-tweet-buzz?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 781
ETag: W/"30d-547962439"
set-cookie: igloo=s%3AZWaoKgspyFmRtGrU8fd9BjM0eWd0OzLm.Vu0rwQSu6IQ11AO%2BDhtpJTw7sXJ29eI00ARKiKYmUo4; Path=/; Expires=Wed, 13 Aug 2014 21:38:05 GMT; HttpOnly
X-Response-Time: 23413.11348ms
Date: Tue, 12 Aug 2014 21:38:05 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-08-12T04:00:00.000Z",
"ticker": "AAPL",
"buzz": "1.1332221237110470"
},
{
"ts": "2013-08-13T04:00:00.000Z",
"ticker": "AAPL",
"buzz": "2.5277599695744970"
},
{
"ts": "2013-08-14T04:00:00.000Z",
"ticker": "AAPL",
"buzz": "1.5415269201662773"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Daily tweet buzz historical data
HTTP Request
GET https://open.marketprophit.com/historical/daily-tweet-buzz
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | last year from previous biz day |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
User Sentiment
User Sentimentcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/user-sentiment"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 617
ETag: W/"269-952293755"
set-cookie: igloo=s%3A5B_kmCSGwSW9xx6ybxg-ZT1Je1GhFG7Z.V0HumQfJ2rj2Po02NT0LH1k0YAotTx131UVsGLJfcUM; Path=/; Expires=Thu, 04 Sep 2014 21:06:37 GMT; HttpOnly
set-cookie: igloo=s%3AOEhhiCZ8NxeN4dC_U58v0XjlRUYqrBaD.NwUisBEbpXYK5TgYtw3Zctw6E3tDuXgbtRWoCf5eHaE; Path=/; Expires=Sat, 13 Sep 2014 05:22:35 GMT; HttpOnly
X-Response-Time: 110.22766ms
Date: Fri, 12 Sep 2014 05:22:35 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-12T09:22:16.000Z",
"user_id": "306380230",
"ticker": "ABBV",
"sentiment": "-0.2588996033555621",
"user_score": "-0.0302670281535698"
},
{
"ts": "2014-09-12T09:22:16.000Z",
"user_id": "306380230",
"ticker": "BKW",
"sentiment": "-0.2125797315247087",
"user_score": "-0.0302670281535698"
},
{
"ts": "2014-09-12T09:22:16.000Z",
"user_id": "306380230",
"ticker": "CQB",
"sentiment": "-0.2175806295716652",
"user_score": "-0.0302670281535698"
},
{
"ts": "2014-09-12T09:22:16.000Z",
"user_id": "306380230",
"ticker": "MDT",
"sentiment": "-0.2143790834311274",
"user_score": "-0.0302670281535698"
},
{
"ts": "2014-09-12T09:22:16.000Z",
"user_id": "306380230",
"ticker": "MYL",
"sentiment": "-0.2509134584133897",
"user_score": "-0.0302670281535698"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Pushes the complete set of user sentiment records for all tickers and users for the most recent full second of data.
HTTP Request
GET https://open.marketprophit.com/real-time/user-sentiment
User Sentiment Last Minutecurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/real-time/user-sentiment-last-minute?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 279
ETag: W/"117-4213572241"
set-cookie: igloo=s%3ANj_eGZXUhSiaBlbEyRuLif5omiQHMwBb.UEBcE%2BgdJ3zEYggHX3xMO17wPeAFOq2mC3yY3fo%2FEfQ; Path=/; Expires=Thu, 04 Sep 2014 21:06:27 GMT; HttpOnly
X-Response-Time: 55484.97377ms
Date: Wed, 03 Sep 2014 21:06:26 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-04T01:04:50.000Z",
"user_id": "16732770",
"ticker": "AAPL",
"sentiment": "-0.1779961001799503",
"user_score": "-0.2758648199349465"
},
{
"ts": "2014-09-04T01:04:57.000Z",
"user_id": "21917683",
"ticker": "AAPL",
"sentiment": "0.3824375192808119",
"user_score": "0.0167956882209607"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns the complete set of user sentiment records for all tickers and users for the most recent full minute of data.
HTTP Request
GET https://open.marketprophit.com/real-time/user-sentiment-last-minute
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
User Sentiment by Usercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/user-sentiment-by-user?user_id=14216123"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 315
ETag: W/"13b-3610139013"
set-cookie: igloo=s%3AaRb2_t7SMnQuw2-dZx7G8bnF1PYYTZCh.D1GPHXaCs%2BFQKXXXue1NA54RoLtLoawEVZ5BfsbxCQk; Path=/; Expires=Thu, 04 Sep 2014 21:06:31 GMT; HttpOnly
X-Response-Time: 70468.29455ms
Date: Wed, 03 Sep 2014 21:06:31 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-08T20:23:28.000Z",
"user_id": "14216123",
"ticker": "AAPL",
"sentiment": "-0.7557448993700525"
},
{
"ts": "2014-08-11T22:50:07.000Z",
"user_id": "14216123",
"ticker": "AAPL",
"sentiment": "0.0676227002719756"
},
{
"ts": "2014-08-22T02:36:06.000Z",
"user_id": "14216123",
"ticker": "AAPL",
"sentiment": "-0.0362879863185483"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns a complete range of historical intraday records for a given user based on a date range (start date, end date).
HTTP Request
GET https://open.marketprophit.com/historical/user-sentiment-by-user
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
user_id | User ID of a Twitter username | yes | none |
start_ts | Start date range (MM-DD-YYYY) or ISO-8601 timestamp | no | 1 month ago |
end_ts | End date range (MM-DD-YYYY) or ISO-8601 timestamp | no | previous business day |
ticker | 3-4 character long alphanumeric stock ticker symbol | no | none |
User Sentiment by Tickercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/user-sentiment-by-ticker?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2
ETag: W/"2-223132457"
set-cookie: igloo=s%3ArZ6AP--i8WCcohJGeJ4mUiysyoXBRTiZ.wWmehGVq1sINRYooopRK%2FXbhWPeO3MciUKtGfHXlN3I; Path=/; Expires=Wed, 13 Aug 2014 21:37:54 GMT; HttpOnly
X-Response-Time: 13135.91561ms
Date: Tue, 12 Aug 2014 21:37:54 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-07-11T04:01:15.000Z",
"user_id": "2485561232",
"ticker": "AAPL",
"sentiment": "-0.4564643833340774"
},
{
"ts": "2014-07-11T04:01:43.000Z",
"user_id": "2541107853",
"ticker": "AAPL",
"sentiment": "-0.3055079719965658"
},
{
"ts": "2014-07-11T04:02:50.000Z",
"user_id": "2484874556",
"ticker": "AAPL",
"sentiment": "0.1006008721400263"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns a complete range of historical intraday records for a given ticker based on a date range (start date, end date)..
HTTP Request
GET https://open.marketprophit.com/historical/user-sentiment-by-ticker
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_ts | Start date range (MM-DD-YYYY) or ISO-8601 timestamp | no | 1 month ago |
end_ts | End date range (MM-DD-YYYY) or ISO-8601 timestamp | no | previous business day |
user_id | User ID of a Twitter username | no | none |
User Scores
User Scorescurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/user-scores"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2
ETag: W/"2-223132457"
set-cookie: igloo=s%3AATpcO23gHCkhlvR-K2gXTXbFuug38I7s.e4rlLU4t4Mt72YZlEv6JrbeDX%2BuKKfJhyQuSIK%2BL1DE; Path=/; Expires=Thu, 04 Sep 2014 21:06:37 GMT; HttpOnly
X-Response-Time: 74538.73302ms
Date: Wed, 03 Sep 2014 21:06:37 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "2775681704",
"score": "2.0001421921325333",
"mp_rank": "1"
},
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "1235173028",
"score": "1.3150460972868192",
"mp_rank": "2"
},
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "1342526569",
"score": "1.2986772979449543",
"mp_rank": "3"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns a complete set of historical daily records for a single date.
HTTP Request
GET https://open.marketprophit.com/historical/user-scores
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
date | Date (MM-DD-YYYY) | no | previous business day |
User Scores Lastcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/user-scores-last"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 347428
ETag: W/"54d24-3942949263"
set-cookie: igloo=s%3AWqhFT-iaDBaTVtYRb0MSWluoODgY_mG9.IKV4BevKvReJ03eqFDv%2Fs83lQOm8lA2d3glqHGI5FhI; Path=/; Expires=Thu, 04 Sep 2014 21:06:02 GMT; HttpOnly
X-Response-Time: 41915.65650ms
Date: Wed, 03 Sep 2014 21:06:00 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "118840585",
"score": "0.1943254240169530",
"mp_rank": "810"
},
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "408677509",
"score": "0.2186445835267166",
"mp_rank": "744"
},
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "399673647",
"score": "0.0131685023390215",
"mp_rank": "1734"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns all user scores for the most recent business date.
HTTP Request
GET https://open.marketprophit.com/historical/user-scores-last
Daily User Scores by Usercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/daily-user-scores-by-user?user_id=14216123"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2
ETag: W/"2-223132457"
set-cookie: igloo=s%3AfDNrZN91VOwIoU3eg9pTd34aiGSZ2PVj.OQqa%2B2FIcR9z2GQkt7pTdTsSY5h5h8upDZ%2Fti2LQXYU; Path=/; Expires=Wed, 13 Aug 2014 21:37:57 GMT; HttpOnly
X-Response-Time: 15912.90525ms
Date: Tue, 12 Aug 2014 21:37:57 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2013-11-22T05:00:00.000Z",
"user_id": "14216123",
"score": "0.0321654952336053",
"mp_rank": "1374"
},
{
"ts": "2013-11-25T05:00:00.000Z",
"user_id": "14216123",
"score": "0.0586937871041895",
"mp_rank": "1311"
},
{
"ts": "2013-11-26T05:00:00.000Z",
"user_id": "14216123",
"score": "0.0586091539884324",
"mp_rank": "1326"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns user scores for a given range of business dates and user id.
HTTP Request
GET https://open.marketprophit.com/historical/daily-user-scores-by-user
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
user_id | User ID of a Twitter username | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 year ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
ticker | 3-4 character long alphanumeric stock ticker symbol | no | none |
Ticker Specific User Scorescurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/ticker-specific-user-scores"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 1827
ETag: W/"723-2263214943"
set-cookie: igloo=s%3A8lmBcHKuQhFyN1NKm4dm5uXguwazxWD8.LvE56ccKP63ujzIZJRt7pliN357KSITUmYOLlomXBi4; Path=/; Expires=Wed, 13 Aug 2014 21:38:30 GMT; HttpOnly
X-Response-Time: 51610.17090ms
Date: Tue, 12 Aug 2014 21:38:30 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "181187043",
"user_score": "-0.0026369831314982",
"mp_rank": "2591",
"ticker": "6E_F",
"ticker_user_score": "-0.1782710138326910",
"ticker_rank": "1"
},
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "2181334776",
"user_score": "0.0129599819678115",
"mp_rank": "2407",
"ticker": "AA",
"ticker_user_score": "-0.7452878489777490",
"ticker_rank": "1"
},
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "524732173",
"user_score": "-0.2173857483249539",
"mp_rank": "4467",
"ticker": "AAL",
"ticker_user_score": "-0.5485664067227436",
"ticker_rank": "1"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns ticker specific user scores for a given business date.
HTTP Request
GET https://open.marketprophit.com/historical/ticker-specific-user-scores
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
date | Date (MM-DD-YYYY) | no | previous business day |
ticker | 3-4 character long alphanumeric stock ticker symbol | no | none |
Ticker Specific User Scores by Usercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/ticker-specific-user-scores-by-user?user_id=465618822"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 1110
ETag: W/"456-3105583181"
set-cookie: igloo=s%3AbJBMuvhtiFPGeIfrfFr-qFhNqsFrxPwI.0ZSSsp8fhwVICqscFaI%2BpMg%2Fcff6Uz%2BYtFar39AbxIA; Path=/; Expires=Thu, 04 Sep 2014 21:07:02 GMT; HttpOnly
X-Response-Time: 342.90979ms
Date: Fri, 12 Sep 2014 05:25:59 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.3166236509574362",
"mp_rank": "2963",
"ticker": "AAPL",
"ticker_user_score": "-0.4010001389306833",
"ticker_rank": "53"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.2999747437813455",
"mp_rank": "2937",
"ticker": "AAPL",
"ticker_user_score": "-0.4170674649261886",
"ticker_rank": "52"
},
{
"ts": "2014-09-05T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.2928999373117233",
"mp_rank": "2927",
"ticker": "AAPL",
"ticker_user_score": "-0.4170674649261886",
"ticker_rank": "52"
},
{
"ts": "2014-09-08T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.3347460876384579",
"mp_rank": "3075",
"ticker": "AAPL",
"ticker_user_score": "-0.3529048272387204",
"ticker_rank": "47"
},
{
"ts": "2014-09-09T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.1681273857207610",
"mp_rank": "2616",
"ticker": "AAPL",
"ticker_user_score": "-0.1379360297089378",
"ticker_rank": "85"
},
{
"ts": "2014-09-10T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.1633934595290730",
"mp_rank": "2625",
"ticker": "AAPL",
"ticker_user_score": "0.0584702095933377",
"ticker_rank": "69"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Ticker specific user score data for range of given business dates for a given user id.
HTTP Request
GET https://open.marketprophit.com/historical/ticker-specific-user-scores-by-user
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
user_id | User ID of a Twitter username | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
ticker | 3-4 character long alphanumeric stock ticker symbol | no | none |
Ticker Specific User Scores by Tickercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/ticker-specific-user-scores-by-ticker?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 88094
ETag: W/"2-223132457"
set-cookie: igloo=s%3Az36zBqtp0u-CMMHvHmDve6P5O_YAIr8d.phr4xYXWN3alyvbi8oB2smhNa4Z5sPWVZYiPEjGDIJM; Path=/; Expires=Thu, 04 Sep 2014 21:06:06 GMT; HttpOnly
X-Response-Time: 108.18530ms
Date: Fri, 12 Sep 2014 05:31:22 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "260474791",
"user_score": "0.4069735531424589",
"mp_rank": "240",
"ticker": "AAPL",
"ticker_user_score": "1.2893778888772951",
"ticker_rank": "1"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "299891017",
"user_score": "-0.2056431365158536",
"mp_rank": "2680",
"ticker": "AAPL",
"ticker_user_score": "0.8120899699958904",
"ticker_rank": "2"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "39546678",
"user_score": "-0.0157165861892973",
"mp_rank": "1860",
"ticker": "AAPL",
"ticker_user_score": "0.6732607748584487",
"ticker_rank": "3"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "1919041363",
"user_score": "0.1551041009180494",
"mp_rank": "914",
"ticker": "AAPL",
"ticker_user_score": "0.6442132466192081",
"ticker_rank": "4"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "368615592",
"user_score": "-0.0938900018284354",
"mp_rank": "2259",
"ticker": "AAPL",
"ticker_user_score": "0.6156029172949623",
"ticker_rank": "5"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "1565751108",
"user_score": "-0.1464364439322250",
"mp_rank": "2474",
"ticker": "AAPL",
"ticker_user_score": "0.5626091145546215",
"ticker_rank": "6"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "143955071",
"user_score": "0.3995411533585751",
"mp_rank": "256",
"ticker": "AAPL",
"ticker_user_score": "0.5600109988680823",
"ticker_rank": "7"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "32161395",
"user_score": "-0.0278641259919121",
"mp_rank": "1924",
"ticker": "AAPL",
"ticker_user_score": "0.4843988354008905",
"ticker_rank": "8"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "2260954471",
"user_score": "0.0766078506928667",
"mp_rank": "1302",
"ticker": "AAPL",
"ticker_user_score": "0.4833892835756675",
"ticker_rank": "9"
},
{
"ts": "2014-09-03T04:00:00.000Z",
"user_id": "216798259",
"user_score": "0.1813297539250174",
"mp_rank": "801",
"ticker": "AAPL",
"ticker_user_score": "0.4679698301420958",
"ticker_rank": "10"
},
Returns response headers such as:
Returns response such as (limited results
for brevity):
Ticker specific user score data for range of given business dates for a given ticker.
HTTP Request
GET https://open.marketprophit.com/historical/ticker-specific-user-scores-by-ticker
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
user_id | User ID of a Twitter username | no | none |
Sector Specific User Scorescurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/sector-specific-user-scores"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 716582
ETag: W/"aef26-3851160489"
set-cookie: igloo=s%3AKP84Uv-Pnvw9nYNp1UkG92gioVmWlXni.wFJ71Nw7TylMltKtBHuZU27aLRVngLQw5Uu3UqFGy7o; Path=/; Expires=Thu, 04 Sep 2014 21:06:46 GMT; HttpOnly
X-Response-Time: 83719.51932ms
Date: Wed, 03 Sep 2014 21:06:37 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "246134345",
"user_score": "0.0249420818533537",
"mp_rank": "1670",
"sector": "Agriculture",
"sector_user_score": "0.5885757038418225",
"sector_rank": "1",
"tickers": "ZW_F, CT_F, CC_F, ZS_F, ZC_F"
},
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "120004341",
"user_score": "0.1943121648507866",
"mp_rank": "811",
"sector": "BasicMaterials",
"sector_user_score": "1.8568091196540009",
"sector_rank": "1",
"tickers": "EMES, PKD"
},
{
"ts": "2014-09-02T04:00:00.000Z",
"user_id": "192759988",
"user_score": "0.0286673252697910",
"mp_rank": "1650",
"sector": "Conglomerates",
"sector_user_score": "0.4335308787167536",
"sector_rank": "1",
"tickers": "REE"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns sector specific user scores for a given business date.
HTTP Request
GET https://open.marketprophit.com/historical/sector-specific-user-scores
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
date | Date (MM-DD-YYYY) | no | previous business day |
sector | Sector (must be one of Agriculture, BasicMaterials, Conglomerates, ConsumerGoods, Currency, Energy, Financial, Healthcare, Index, IndustrialGoods, Livestock, Metals, Other Futures, Services, Technology, Utilities) | no | none |
Sector Specific User Scores by Usercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/sector-specific-user-scores-by-user?user_id=465618822"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2
ETag: W/"2-223132457"
set-cookie: igloo=s%3AYaTm-3GSeiBU-nfhyz09kqhV4IBRcHjA.SvZf2RdfmhAQAkkgafITCC8FQh0ZYGhGe9gA9hCFAf4; Path=/; Expires=Thu, 04 Sep 2014 21:06:37 GMT; HttpOnly
X-Response-Time: 74861.60121ms
Date: Wed, 03 Sep 2014 21:06:37 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.2999747437813455",
"mp_rank": "2937",
"sector": "ConsumerGoods",
"sector_user_score": "-0.4063673006821496",
"sector_rank": "219",
"tickers": "TSLA, AAPL"
},
{
"ts": "2014-09-05T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.2928999373117233",
"mp_rank": "2927",
"sector": "ConsumerGoods",
"sector_user_score": "-0.4063673006821496",
"sector_rank": "224",
"tickers": "TSLA, AAPL"
},
{
"ts": "2014-09-08T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.3347460876384579",
"mp_rank": "3075",
"sector": "ConsumerGoods",
"sector_user_score": "-0.3449787909758946",
"sector_rank": "218",
"tickers": "TSLA, AAPL"
},
{
"ts": "2014-09-09T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.1681273857207610",
"mp_rank": "2616",
"sector": "ConsumerGoods",
"sector_user_score": "-0.1351355502881755",
"sector_rank": "208",
"tickers": "TSLA, AAPL"
},
{
"ts": "2014-09-10T04:00:00.000Z",
"user_id": "465618822",
"user_score": "-0.1633934595290730",
"mp_rank": "2625",
"sector": "ConsumerGoods",
"sector_user_score": "0.0614723001211677",
"sector_rank": "143",
"tickers": "TSLA, AAPL"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns sector specific user scores for a given range of business dates for a given user id.
HTTP Request
GET https://open.marketprophit.com/historical/sector-specific-user-scores-by-user
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
user_id | User ID of a Twitter username | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
sector | Sector (must be one of Agriculture, BasicMaterials, Conglomerates, ConsumerGoods, Currency, Energy, Financial, Healthcare, Index, IndustrialGoods, Livestock, Metals, Other Futures, Services, Technology, Utilities) | no | none |
Sector Specific User Scores by Sectorcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/sector-specific-user-scores-by-sector?sector=Technology"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2423
ETag: W/"977-3529212674"
set-cookie: igloo=s%3AojzT2NRF-3qzO3hNJiOEB27TfUAW3_mW.OYKiNuaSvFfdyKv%2Bi5YjTGyk7Ua7OBTyXfEvMT8NrbI; Path=/; Expires=Wed, 13 Aug 2014 21:38:07 GMT; HttpOnly
X-Response-Time: 26034.28419ms
Date: Tue, 12 Aug 2014 21:38:07 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "37555599",
"user_score": "0.2773472237216517",
"mp_rank": "601",
"sector": "Technology",
"sector_user_score": "1.1098795221983464",
"sector_rank": "1",
"tickers": "CAMT, TWTR, GLUU"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "2663504725",
"user_score": "0.0272548262575489",
"mp_rank": "2068",
"sector": "Technology",
"sector_user_score": "1.0571590376076569",
"sector_rank": "2",
"tickers": "VRSN, TRNS, SWIR, AWAY, MRVL, VRNS, SSYS, ADI, UTEK, CHT"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "729002623",
"user_score": "-0.1134195828181402",
"mp_rank": "3521",
"sector": "Technology",
"sector_user_score": "0.9056044706983220",
"sector_rank": "3",
"tickers": "NYBD, HPNN"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Sector specific user score data for range of given business dates for a given sector.
HTTP Request
GET https://open.marketprophit.com/historical/sector-specific-user-scores-by-sector
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
sector | Sector (must be one of Agriculture, BasicMaterials, Conglomerates, ConsumerGoods, Currency, Energy, Financial, Healthcare, Index, IndustrialGoods, Livestock, Metals, Other Futures, Services, Technology, Utilities) | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
user_id | User ID of a Twitter username | no | none |
User Returns
Ticker Specific User Returnscurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/ticker-specific-user-returns"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 1784
ETag: W/"6f8-4028804962"
set-cookie: igloo=s%3AZX2eW8nwyIwlefLvzzZToQRimzXg0tpj.WiNqdNBXdHOAhhxwFLaEiM0UMfvgM0ev13fEtcvKK5M; Path=/; Expires=Wed, 13 Aug 2014 21:38:23 GMT; HttpOnly
X-Response-Time: 41922.46063ms
Date: Tue, 12 Aug 2014 21:38:23 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "76867219",
"user_score": "0.4290218226161255",
"mp_rank": "264",
"ticker": "6E",
"ticker_return": "-0.0001888902305558",
"ticker_rank": "1"
},
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "44824361",
"user_score": "0.1716032017058580",
"mp_rank": "1076",
"ticker": "6E_F",
"ticker_return": "0.0024301013505508",
"ticker_rank": "1"
},
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "56910769",
"user_score": "-0.1205962886514924",
"mp_rank": "3783",
"ticker": "6J_F",
"ticker_return": "0.0050026081627963",
"ticker_rank": "1"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns ticker specific user returns for a given business date.
HTTP Request
GET https://open.marketprophit.com/historical/ticker-specific-user-returns
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
date | Date (MM-DD-YYYY) | no | previous business day |
ticker | 3-4 character long alphanumeric stock ticker symbol | no | none |
Ticker Specific User Returns by Usercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/ticker-specific-user-returns-by-user?user_id=14216123"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 1790
ETag: W/"6fe-772723283"
set-cookie: igloo=s%3AvXJMEFfTP6mTruxVsXsXoi_CSWuVoBbT.MxxjGIAsqRmU%2Fe5ha%2B2ng1%2F9VRwP10A2BnRs32TsbI8; Path=/; Expires=Wed, 13 Aug 2014 21:38:58 GMT; HttpOnly
X-Response-Time: 74143.21016ms
Date: Tue, 12 Aug 2014 21:38:58 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "14216123",
"user_score": "-0.3510774804019593",
"mp_rank": "4447",
"ticker": "BA",
"ticker_return": "0.0004170837504172",
"ticker_rank": "42"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "14216123",
"user_score": "-0.3510774804019593",
"mp_rank": "4447",
"ticker": "ETN",
"ticker_return": "-0.0126724077574739",
"ticker_rank": "69"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "14216123",
"user_score": "-0.3510774804019593",
"mp_rank": "4447",
"ticker": "FB",
"ticker_return": "-0.0028441714514621",
"ticker_rank": "599"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Ticker specific user returns data for range of given business dates for a given user id.
HTTP Request
GET https://open.marketprophit.com/historical/ticker-specific-user-returns-by-user
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
user_id | User ID of a Twitter username | yes | none |
ticker | 3-4 character long alphanumeric stock ticker symbol | no | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
Ticker Specific User Returns by Tickercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/ticker-specific-user-returns-by-ticker?ticker=AAPL"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 1712
ETag: W/"6b0-2812379887"
set-cookie: igloo=s%3A04V43-PUnHofqIS0iHJG5DLgRrHzscdJ.XjiTGHMt0sg1hka%2BbfOUGICHnyJaaFFMJNwVStLS1rI; Path=/; Expires=Wed, 13 Aug 2014 21:38:17 GMT; HttpOnly
X-Response-Time: 35620.37097ms
Date: Tue, 12 Aug 2014 21:38:17 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "2196092280",
"user_score": "0.1100262250232083",
"mp_rank": "1304",
"ticker": "AAPL",
"ticker_return": "0.0206325066945550",
"ticker_rank": "1"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "263246119",
"user_score": "-0.0302670281535698",
"mp_rank": "1234",
"ticker": "AAPL",
"ticker_return": "0.0179763739085772",
"ticker_rank": "2"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "224613869",
"user_score": "0.0922994543961169",
"mp_rank": "1411",
"ticker": "AAPL",
"ticker_return": "0.0168187722322255",
"ticker_rank": "3"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Ticker specific user returns data for range of given business dates for a given user id.
HTTP Request
GET https://open.marketprophit.com/historical/ticker-specific-user-returns-by-ticker
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
ticker | 3-4 character long alphanumeric stock ticker symbol | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
user_id | User ID of a Twitter username | no | none |
Sector Specific User Returnscurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/sector-specific-user-returns"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2012
ETag: W/"7dc-1115675420"
set-cookie: igloo=s%3AQUBOJzJSxqgAjr2kaPCHOy2OUAs7gmpX.XwVCzlIZAUj17pQWQBKOVPvJpv9GiI5cDnAQfv9%2F37M; Path=/; Expires=Wed, 13 Aug 2014 21:38:50 GMT; HttpOnly
X-Response-Time: 65264.19082ms
Date: Tue, 12 Aug 2014 21:38:46 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "2631042979",
"user_score": "0.2949495363587444",
"mp_rank": "540",
"sector": "Agriculture",
"sector_return": "0.0313268694491999",
"sector_rank": "1",
"tickers": "ZW_F, CC_F"
},
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "137768351",
"user_score": "0.4101057469019749",
"mp_rank": "296",
"sector": "BasicMaterials",
"sector_return": "2.1337087087087090",
"sector_rank": "1",
"tickers": "BBRD"
},
{
"ts": "2014-08-11T04:00:00.000Z",
"user_id": "2204135624",
"user_score": "0.0021204268748031",
"mp_rank": "2521",
"sector": "Conglomerates",
"sector_return": "0.4999999999999998",
"sector_rank": "1",
"tickers": "JRRD"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns sector specific user returns for a given business date.
HTTP Request
GET https://open.marketprophit.com/historical/sector-specific-user-returns
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
date | Date (MM-DD-YYYY) | no | previous business day |
sector | Sector (must be one of Agriculture, BasicMaterials, Conglomerates, ConsumerGoods, Currency, Energy, Financial, Healthcare, Index, IndustrialGoods, Livestock, Metals, Other Futures, Services, Technology, Utilities) | no | none |
Sector Specific User Returns by Usercurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/sector-specific-user-returns-by-user"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 2
ETag: W/"2-223132457"
set-cookie: igloo=s%3A0_MuVy3UH8bWaIR8knSy9FJaWKV7M8yD.bpkaayE6s%2FjmdnpyOwwmiJi%2BPk1Rxwr4Sqp1gG9C3cQ; Path=/; Expires=Wed, 13 Aug 2014 21:38:49 GMT; HttpOnly
X-Response-Time: 64906.52986ms
Date: Tue, 12 Aug 2014 21:38:46 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "14216123",
"user_score": "-0.3510774804019593",
"mp_rank": "4447",
"sector": "IndustrialGoods",
"sector_return": "-0.0122606094624110",
"sector_rank": "2558",
"tickers": "ETN, BA"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "14216123",
"user_score": "-0.3510774804019593",
"mp_rank": "4447",
"sector": "Services",
"sector_return": "0.0033719008264461",
"sector_rank": "2043",
"tickers": "PNRA"
},
{
"ts": "2014-08-04T04:00:00.000Z",
"user_id": "14216123",
"user_score": "-0.3510774804019593",
"mp_rank": "4447",
"sector": "Technology",
"sector_return": "0.0001114544281942",
"sector_rank": "2793",
"tickers": "TST, FB, XLNX, TWTR"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Returns sector specific user returns for a given range of business dates for a given user id.
HTTP Request
GET https://open.marketprophit.com/historical/sector-specific-user-returns-by-user
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
user_id | User ID of a Twitter username | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
sector | Sector (must be one of Agriculture, BasicMaterials, Conglomerates, ConsumerGoods, Currency, Energy, Financial, Healthcare, Index, IndustrialGoods, Livestock, Metals, Other Futures, Services, Technology, Utilities) | no | none |
Sector Specific User Returns by Sectorcurl -u "sk_live_w3Q4bCJVB8xgyeIKJmTC4DS5:" "https://open.marketprophit.com/historical/sector-specific-user-returns-by-sector?sector=Technology"
Returns response headers such as:
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json; charset=utf-8
Content-Length: 4934718
ETag: W/"804-1016644265"
set-cookie: igloo=s%3AkatUZ0Ykoq9KeXr4mKC4Vtc14X0daITU.QNPJ36PLfqz%2FUkbZIS4pVfRdTAzY73WhLmYmj7XIzig; Path=/; Expires=Wed, 13 Aug 2014 21:39:04 GMT; HttpOnly
X-Response-Time: 1633.64696ms
Date: Fri, 12 Sep 2014 05:43:41 GMT
Connection: keep-alive
Returns response such as (limited results
for brevity):
[
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "2344364964",
"user_score": "0.2449865693742646",
"mp_rank": "559",
"sector": "Technology",
"sector_return": "0.8191489361702127",
"sector_rank": "1",
"tickers": "IWEB, BRNW, HPNN"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "351709067",
"user_score": "-0.0302670281535698",
"mp_rank": "1234",
"sector": "Technology",
"sector_return": "0.7500000000000000",
"sector_rank": "2",
"tickers": "BTZO"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "770539957",
"user_score": "0.2280193678521851",
"mp_rank": "604",
"sector": "Technology",
"sector_return": "0.7104635817827771",
"sector_rank": "3",
"tickers": "JRJC, CAMT, OTIV, WPCS, ISNS, VII, GIGA, HIMX, DGLY"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "68895541",
"user_score": "0.1964084575700404",
"mp_rank": "687",
"sector": "Technology",
"sector_return": "0.5319374623017363",
"sector_rank": "4",
"tickers": "HTCH, TWTR, DGLY"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "2399298517",
"user_score": "0.3227776092795684",
"mp_rank": "370",
"sector": "Technology",
"sector_return": "0.5182481751824819",
"sector_rank": "5",
"tickers": "NEOM, IACH"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "2776295942",
"user_score": "0.1836033025095046",
"mp_rank": "737",
"sector": "Technology",
"sector_return": "0.5000000000000000",
"sector_rank": "6",
"tickers": "NSAV, SFOR"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "17475489",
"user_score": "-0.0302670281535698",
"mp_rank": "1234",
"sector": "Technology",
"sector_return": "0.5000000000000000",
"sector_rank": "7",
"tickers": "MSOA"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "550340371",
"user_score": "-0.2077507917417668",
"mp_rank": "2663",
"sector": "Technology",
"sector_return": "0.4999999999999998",
"sector_rank": "8",
"tickers": "MSPC"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "395016696",
"user_score": "0.2701673196907900",
"mp_rank": "497",
"sector": "Technology",
"sector_return": "0.4926968415987898",
"sector_rank": "9",
"tickers": "MNDO, DGLY"
},
{
"ts": "2014-09-04T04:00:00.000Z",
"user_id": "1232728544",
"user_score": "0.1950747923766352",
"mp_rank": "691",
"sector": "Technology",
"sector_return": "0.4922397082349410",
"sector_rank": "10",
"tickers": "CYBL, CEHC, NANI, TXTM"
}
]
Returns response headers such as:
Returns response such as (limited results
for brevity):
Sector specific user returns data for range of given business dates for a given sector.
HTTP Request
GET https://open.marketprophit.com/historical/sector-specific-user-returns-by-sector
Query Parameters
Parameter | Description | Required | Default |
---|---|---|---|
time_frame | Time frame (must be one of ONE_WEEK, TWO_WEEKS, THREE_WEEKS, FOUR_WEEKS) | no | ONE_WEEK |
sector | Sector (must be one of Agriculture, BasicMaterials, Conglomerates, ConsumerGoods, Currency, Energy, Financial, Healthcare, Index, IndustrialGoods, Livestock, Metals, Other Futures, Services, Technology, Utilities) | yes | none |
start_date | Start date range (MM-DD-YYYY) | no | 1 week ago |
end_date | End date range (MM-DD-YYYY) | no | previous business day |
user_id | User ID of a Twitter username | no | none |