create account

AskSteem API v1.1 Update - User Search, Includes, and Sorting by thekyle

View this thread on: hive.blogpeakd.comecency.com
· @thekyle · (edited)
$468.95
AskSteem API v1.1 Update - User Search, Includes, and Sorting
Hello, everyone!
Today I'm releasing the AskSteem API v1.1 which brings tons of new features for developers to play with in their apps. 

# What is AskSteem
[AskSteem](https://www.asksteem.com) is a powerful and fast search engine that indexes the steem blockchain. You can find out what AskSteem is capable of [here](https://steemit.com/steemit/@thekyle/introducing-asksteem-a-steem-search-engine)

# What is the AskSteem API
The AskSteem API is a RESTful HTTP API that allows developers to integrate search functionality into their applications easily. To learn more about the AskSteem API v1.0 read [this post](https://steemit.com/asksteem/@thekyle/asksteem-search-api-docs).

# Whats New
The AskSteem API v1.1 brings loads of new functionality that has been requested by developers.

## Includes
You can now tell AskSteem to return specific fields for each search result so you don't have you query the blockchain yourself for additional data. By default the AskSteem API returns `title`,`summary`,`net_votes`,`children`,`permlink`,`created`, and `tags` fields for each result. However, you can now use the `include` URL parameter to include specific fields that are not returned by default. 

For example, to include the `json_metadata` field for each result use the following:
`https://api.asksteem.com/search?q=asksteem&include=meta`
This will return results that look like this:
```
{
		"children": 89,
		"type": "post",
		"permlink": "introducing-asksteem-a-steem-search-engine",
		"meta": {
			"format": "markdown",
			"app": "steemit/0.1"
		},
		"tags": ["steemit", "steem", "asksteem", "steem-project", "steemdev"],
		"author": "thekyle",
		"summary": "\nHello, Steemians!\nOver the past month, I've been building a new search engine that indexes the steem blockchain. It's currently live at asksteem.com. The goal of AskSteem is to provide a reliable, powerful, and fast search engine that is optimized for steem. In this post, I'd like to cover some of the features that are available. \nQuery Syntax\nThere are many different ways that you can query the AskSteem index. I've created a video demonstrating each of them, but you may also read their descrip",
		"net_votes": 300,
		"created": "2017-06-03T19:07:45",
		"title": "Introducing AskSteem - A steem search engine"
	}
```
The include parameter can take only one value or multiple values seperated by commas. 

## User Search
When the AskSteem API originally launched it only supported searching posts on the blockchain, not users like from the regular AskSteem.com interface. But with v1.1 developers can now tap into our user database with the `types` URL parameter.

To include users and posts in search results use the following:
`https://api.asksteem.com/search?q=steem&types=post,user`
or for only users:
`https://api.asksteem.com/search?q=steem&types=user`
The results would look like:
```
{
		"followers_count": 226,
		"name": "steem",
		"rep": 25,
		"created": "2016-03-24T17:00:18",
		"post_count": 0,
		"type": "user",
		"following_count": 0
}
```
User results also support the `includes` parameter for fetching additional fields about users.

## Sorting
This new version of the API supports custom sorting of results by a field with two new URL parameters `sort_by` and `order`. The `sort_by` parameter takes the name of the field you would like to use for sorting, for example, `created` (for creation date) or `net_votes` (for the number of votes). The `order` parameter determines how the field is to be sorted and accepts either `desc` or `asc`for descending and ascending respectively. 

For example to sort results by most recent use the following:
`https://api.asksteem.com/search?q=steem&sort_by=created&order=desc`
To sort results by most comments use this:
`https://api.asksteem.com/search?q=steem&sort_by=children&order=desc`
The default value of `order` is `desc` so it can be left out like below:
`https://api.asksteem.com/search?q=steem&sort_by=net_votes`

## Restrict Search Results to App
While this is not a new feature of the API and was available in v1.0 and the standard AskSteem.com interface it was not documented. To restrict search results to a specific app use the following query syntax:
`meta.app:appname AND query goes here`

# How to Upgrade
If you used the AskSteem API v1.0 in your app then you have already been transitioned to using this new version. The AskSteem API v1.1 is fully backward-compatible with v1.0. 

# Summary
Here is a table to summarize the parameters of the API.
| param   | description                                              | default |
|---------|----------------------------------------------------------|---------|
| q       | takes the search term to query for.                      | None    |
| pg      | takes the page number                                    | 1       |
| include | takes a CSV list of additional fields to return          | None    |
| types   | takes a CSV list of types of items to return (post/user) | post    |
| sort_by | takes a single field to be used for sorting the results  | _score  |
| order   | takes either `desc` or `asc`                           | desc    |

# Required Attribution
We require that all applications using the API place AskSteem branding on the search results page in a location that is immediately visible to the user without any interaction on their part. Additionally, to ensure reliability and uptime we request that you send between 1% and 2% of post beneficiary rewards to the @hoxly user account if applicable to your app. 

## Branding Examples:
Here is an example of some HTML code to embed AskSteem branding:
`<a href="https://www.asksteem.com"><img src="https://cdn.hoxly.com/asksteem/attribution.png" width="100px"></a>`

Preview:
<a href="https://www.asksteem.com"><img src="https://cdn.hoxly.com/asksteem/attribution.png" width="100px"></a>

Thank you, and happy searching!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 383 others
properties (23)
authorthekyle
permlinkasksteem-api-v1-1-update-user-search-includes-and-sorting
categoryasksteem
json_metadata{"tags":["asksteem","steem-dev","steem","search","api"],"users":["hoxly"],"image":["https://cdn.hoxly.com/asksteem/attribution.png"],"links":["https://www.asksteem.com","https://steemit.com/steemit/@thekyle/introducing-asksteem-a-steem-search-engine","https://steemit.com/asksteem/@thekyle/asksteem-search-api-docs"],"app":"steemit/0.1","format":"markdown"}
created2017-08-19 21:44:33
last_update2017-08-20 00:04:24
depth0
children99
last_payout2017-08-26 21:44:33
cashout_time1969-12-31 23:59:59
total_payout_value357.188 HBD
curator_payout_value111.759 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,886
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,297,151
net_rshares129,027,377,501,000
author_curate_reward""
vote details (447)
@a7x ·
Inspire man
properties (22)
authora7x
permlinkre-thekyle-2017820t201940520z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-20 13:19:45
last_update2017-08-20 13:19:45
depth1
children0
last_payout2017-08-27 13:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation62,570,483,553
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,346,762
net_rshares0
@abupasi.alachy ·
Interesting post and interested my heart when he saw his greetings know my friends may we become friends.
properties (22)
authorabupasi.alachy
permlinkre-thekyle-2017822t104310261z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-22 03:43:12
last_update2017-08-22 03:43:12
depth1
children0
last_payout2017-08-29 03:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation5,557,880,714,706
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,497,201
net_rshares0
@ahsansaeed ·
Amazing Post! *Upvoted*
Check out my post too
https://steemit.com/photography/@ahsansaeed/exploring-the-real-beauty-of-pakistan-part-6-rawalpindi-mypictureday
https://steemitimages.com/DQmbBi54s9yijC6y87BWYWvMUsBxcBCkKgRbnoEAZRUwpkg/old%20heritge%20rwp.jpg
properties (22)
authorahsansaeed
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t134924514z
categoryasksteem
json_metadata{"tags":["asksteem"],"image":["https://steemitimages.com/DQmbBi54s9yijC6y87BWYWvMUsBxcBCkKgRbnoEAZRUwpkg/old%20heritge%20rwp.jpg"],"links":["https://steemit.com/photography/@ahsansaeed/exploring-the-real-beauty-of-pakistan-part-6-rawalpindi-mypictureday"],"app":"steemit/0.1"}
created2017-08-21 13:49:24
last_update2017-08-21 13:49:24
depth1
children0
last_payout2017-08-28 13:49:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation1,201,935,056,486
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,438,652
net_rshares0
@alun ·
Great!
👍  
properties (23)
authoralun
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t232909247z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:28:42
last_update2017-08-19 23:28:42
depth1
children0
last_payout2017-08-26 23:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,982,622,805
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,302,870
net_rshares1,137,420,961
author_curate_reward""
vote details (1)
@arcange ·
Congratulations @thekyle!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170819) in the following category:

* Pending payout - Ranked 6 with $ 222,67
properties (22)
authorarcange
permlinkre-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t163530000z
categoryasksteem
json_metadata""
created2017-08-20 14:34:15
last_update2017-08-20 14:34:15
depth1
children0
last_payout2017-08-27 14:34:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation1,146,616,139,479,238
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,352,290
net_rshares0
@ausbitbank ·
Awesome stuff thankyou for your hard work
properties (22)
authorausbitbank
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t034635706z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 03:46:39
last_update2017-08-20 03:46:39
depth1
children0
last_payout2017-08-27 03:46:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation287,009,709,424,827
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,315,016
net_rshares0
@bahagia-arbi ·
This post is useful for all of us on Steemit. And I will try to look at the AskSteem you propose to. Regard.feom Aceh.
properties (22)
authorbahagia-arbi
permlinkre-thekyle-2017821t25350620z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-20 19:53:57
last_update2017-08-20 19:53:57
depth1
children0
last_payout2017-08-27 19:53:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation62,544,888,098,801
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,375,776
net_rshares0
@basicstoliving ·
I am so glad the user search is on this api. Lots of people have been asking for this.
properties (22)
authorbasicstoliving
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t035706592z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 03:57:09
last_update2017-08-20 03:57:09
depth1
children0
last_payout2017-08-27 03:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation5,592,751,523,856
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,315,480
net_rshares0
@boucaron ·
Nice ! What components are you using for the backend ?
properties (22)
authorboucaron
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t001713776z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 00:17:12
last_update2017-08-21 00:17:12
depth1
children1
last_payout2017-08-28 00:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation3,973,467,197,811
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,390,593
net_rshares0
@thekyle · (edited)
We are using a custom version of ElasticSearch with our own ranking algorithm. Also custom systems for caching, load-balancing, automatically scaling, crawling the blockchain, etc.
👍  
properties (23)
authorthekyle
permlinkre-boucaron-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t011209430z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:12:09
last_update2017-08-21 01:15:36
depth2
children0
last_payout2017-08-28 01:12:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,393,481
net_rshares681,434,346
author_curate_reward""
vote details (1)
@cartoonhd ·
-Excellent post thanks for sharing
I am a new steemians, maybe i should study first with you, regards know me
https://steemit.com/@cartoonhd    please follow me
I followed and upvoted.Would you like to follow and upvote me.
![DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif](https://steemitimages.com/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif)![DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png](https://steemitimages.com/DQmZr4CcZryi9kn8kLQD11tbo9MXJUYfiBvDPu8DrJtanWS/DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png)
properties (22)
authorcartoonhd
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t135110735z
categoryasksteem
json_metadata{"tags":["asksteem"],"image":["https://steemitimages.com/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif","https://steemitimages.com/DQmZr4CcZryi9kn8kLQD11tbo9MXJUYfiBvDPu8DrJtanWS/DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png"],"links":["https://steemit.com/@cartoonhd"],"app":"steemit/0.1"}
created2017-08-21 13:51:12
last_update2017-08-21 13:51:12
depth1
children0
last_payout2017-08-28 13:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length606
author_reputation27,356,199,641
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,438,813
net_rshares0
@claudene ·
$0.37
this is great. i must try this one. it seems like user friendly. anyway
👍  , , , , , , ,
properties (23)
authorclaudene
permlinkre-thekyle-2017820t181414377z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-20 10:14:21
last_update2017-08-20 10:14:21
depth1
children0
last_payout2017-08-27 10:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.358 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation2,384,253,820,806
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,335,480
net_rshares104,891,149,171
author_curate_reward""
vote details (8)
@clixmoney ·
$0.02
Very good tool, I am thinking also if someone can create a option to save some posts as a bookmark, sometimes there are so amazing post that I want to read again and again but not having time to comment i just lose them, I hope something will be done from some developer
👍  
properties (23)
authorclixmoney
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t014344832z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 01:43:48
last_update2017-08-20 01:43:48
depth1
children1
last_payout2017-08-27 01:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation708,028,799,822,335
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,308,868
net_rshares5,808,759,087
author_curate_reward""
vote details (1)
@thekyle ·
I've received several requests for this feature so it's definitely on the to-do list.
properties (22)
authorthekyle
permlinkre-clixmoney-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t012329636z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:23:30
last_update2017-08-21 01:23:30
depth2
children0
last_payout2017-08-28 01:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,394,116
net_rshares0
@cloudspyder ·
To help asksteem becoming a search engine of the future next to presearch.io we as steemians can do it own part. We need to contribute value often. I try asksteem if it has a capability to search outside steem network content but it fail. It means as stated it only search the steem index by
properties (22)
authorcloudspyder
permlinkre-thekyle-2017820t74250915z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-19 23:44:48
last_update2017-08-19 23:44:48
depth1
children0
last_payout2017-08-26 23:44:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length291
author_reputation8,281,689,777,163
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,303,580
net_rshares0
@creativewoman ·
Wow! Great post,and excellent planning of your project, congratulations my friend.
properties (22)
authorcreativewoman
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t123327202z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 12:33:27
last_update2017-08-20 12:33:27
depth1
children0
last_payout2017-08-27 12:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation18,387,227,725,047
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,343,677
net_rshares0
@crystalboy ·
Awesome stuff!
  Thanks for this relevant information
Congrates you are doing well to all.
And Ah! you are doing well to yourself too.
Thanks anyway.
properties (22)
authorcrystalboy
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t150626640z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 15:06:27
last_update2017-08-21 15:06:27
depth1
children0
last_payout2017-08-28 15:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation225,010,422
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,445,440
net_rshares0
@cworldv99 ·
$0.16
WOW ! Really a great initiation. Appreciated...
👍  
properties (23)
authorcworldv99
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t230927725z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:09:27
last_update2017-08-19 23:09:27
depth1
children1
last_payout2017-08-26 23:09:27
cashout_time1969-12-31 23:59:59
total_payout_value0.163 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation341,500,838,599
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,301,873
net_rshares45,212,621,658
author_curate_reward""
vote details (1)
@akilie1029 ·
Agreed :)
properties (22)
authorakilie1029
permlinkre-cworldv99-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t101716012z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 10:17:15
last_update2017-08-21 10:17:15
depth2
children0
last_payout2017-08-28 10:17:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation5,297,103,276,823
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,423,541
net_rshares0
@djunmul ·
Very interesting post. I hope this can help all steemit users.

Success is always for you @thekyle
properties (22)
authordjunmul
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t212640804z
categoryasksteem
json_metadata{"tags":["asksteem"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-08-22 07:24:27
last_update2017-08-22 07:24:27
depth1
children0
last_payout2017-08-29 07:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation735,531,311,063
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,509,407
net_rshares0
@dontryme2 ·
life is a coder keep it up
👍  
properties (23)
authordontryme2
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170818t195305061z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 13:34:42
last_update2017-08-20 13:34:42
depth1
children0
last_payout2017-08-27 13:34:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation2,547,909,278,823
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,347,823
net_rshares597,726,029
author_curate_reward""
vote details (1)
@encryption ·
Resteemed for later, might be able to use that when I become more familiar with the steem community
properties (22)
authorencryption
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t235322915z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:53:24
last_update2017-08-19 23:53:24
depth1
children0
last_payout2017-08-26 23:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation37,573,943,720
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,303,955
net_rshares0
@enrique89 ·
Excellent post : congratulations
properties (22)
authorenrique89
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t230228309z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:03:39
last_update2017-08-19 23:03:39
depth1
children0
last_payout2017-08-26 23:03:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation664,568,342,668,037
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,301,550
net_rshares0
@entity401 ·
$0.07
mmhmm
👍  
properties (23)
authorentity401
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t005826059z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 00:58:21
last_update2017-08-20 00:58:21
depth1
children1
last_payout2017-08-27 00:58:21
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation747,506,671,271
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,306,797
net_rshares18,704,596,144
author_curate_reward""
vote details (1)
@akilie1029 · (edited)
Let me guess. Your're thinking right???? 
https://media.giphy.com/media/a5viI92PAF89q/giphy.gif
properties (22)
authorakilie1029
permlinkre-entity401-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t101839957z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1","image":["https://media.giphy.com/media/a5viI92PAF89q/giphy.gif"]}
created2017-08-21 10:18:42
last_update2017-08-21 10:20:45
depth2
children0
last_payout2017-08-28 10:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation5,297,103,276,823
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,423,619
net_rshares0
@ervin-lemark ·
Hello and thanks a lot for this great tool.

Is it intentional that the API returns multiple hits? Apparently, it is.

Check this post for details:
https://steemit.com/asksteem/@ervin-lemark/asksteem-api-v1-1-returns-multiple-result-sets-when-query-string-includes
properties (22)
authorervin-lemark
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t122451949z
categoryasksteem
json_metadata{"tags":["asksteem"],"links":["https://steemit.com/asksteem/@ervin-lemark/asksteem-api-v1-1-returns-multiple-result-sets-when-query-string-includes"],"app":"steemit/0.1"}
created2017-08-21 12:24:57
last_update2017-08-21 12:24:57
depth1
children0
last_payout2017-08-28 12:24:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation470,596,037,843,956
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,431,918
net_rshares0
@greatvideos ·
Love it 
Keep it up
properties (22)
authorgreatvideos
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t215625883z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 21:56:30
last_update2017-08-21 21:56:30
depth1
children0
last_payout2017-08-28 21:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation6,696,611,383,944
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,477,706
net_rshares0
@hattaarshavin ·
Thank you for providing new information to the friend of steemit @thekyle
don't forget to follow me @hattaarshavin
properties (22)
authorhattaarshavin
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t080756986z
categoryasksteem
json_metadata{"tags":["asksteem"],"users":["thekyle","hattaarshavin"],"app":"steemit/0.1"}
created2017-08-20 08:07:48
last_update2017-08-20 08:07:48
depth1
children0
last_payout2017-08-27 08:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation320,012,685,354,792
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,328,184
net_rshares0
@headsink ·
Finally a real Steem Search not through Google. I've tried it few minutes ago and enjoy it.  Re-steeemed and shared.
👍  
properties (23)
authorheadsink
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t055429163z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 05:54:33
last_update2017-08-20 05:54:33
depth1
children1
last_payout2017-08-27 05:54:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation1,298,327,132,573
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,321,426
net_rshares1,818,800,798
author_curate_reward""
vote details (1)
@cornholio ·
http://i.imgur.com/HLsCLdw.gif
👍  
👎  
properties (23)
authorcornholio
permlinkre-headsink-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t055429163z-20170820t061123827z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"meep_bot/0.0.1"}
created2017-08-20 06:11:27
last_update2017-08-20 06:11:27
depth2
children0
last_payout2017-08-27 06:11:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation606,749,206,056
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,322,248
net_rshares-75,770,395,475
author_curate_reward""
vote details (2)
@iodoorclubmunich ·
Class- 10 points for this great support and development 2U
👍  
properties (23)
authoriodoorclubmunich
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170824t221010839z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-24 22:10:18
last_update2017-08-24 22:10:18
depth1
children0
last_payout2017-08-31 22:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation560,282,884,006
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,781,624
net_rshares2,524,319,822
author_curate_reward""
vote details (1)
@iot-corp ·
Wow, this is amazing. I had no idea that developing something with these features was a possibility. Nice work!
properties (22)
authoriot-corp
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t010920716z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:09:21
last_update2017-08-21 01:09:21
depth1
children1
last_payout2017-08-28 01:09:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation555,431,101,297
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,393,323
net_rshares0
@thekyle ·
Well, it certainly wasn't easy but I think it's worth it for the steem community.
properties (22)
authorthekyle
permlinkre-iot-corp-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t011143628z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:11:42
last_update2017-08-21 01:11:42
depth2
children0
last_payout2017-08-28 01:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,393,460
net_rshares0
@joshvel ·
A great help to spread out the platform...Thanks to people behind this project.
properties (22)
authorjoshvel
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t221941462z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:19:42
last_update2017-08-19 22:19:42
depth1
children0
last_payout2017-08-26 22:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation9,745,075,470,775
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,299,116
net_rshares0
@juandaloko ·
@thekyle Good afternoon, my project is very good and I would like you to give me permission to make a post for the Spanish community with its content since it is very good. In the post would make mention that you are the main author of this project. I hope your kind reply to the translation permission of your post. Thank you and goodbday friend
properties (22)
authorjuandaloko
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t183023351z
categoryasksteem
json_metadata{"tags":["asksteem"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-08-20 18:30:30
last_update2017-08-20 18:30:30
depth1
children2
last_payout2017-08-27 18:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation2,153,029,483,637
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,370,341
net_rshares0
@thekyle ·
Yeah sure, go ahead.
properties (22)
authorthekyle
permlinkre-juandaloko-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t184045203z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 18:40:45
last_update2017-08-20 18:40:45
depth2
children1
last_payout2017-08-27 18:40:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,370,995
net_rshares0
@juandaloko ·
Friend thank you very much for authorizing me, you suddenly use pastebin to give me the link.
properties (22)
authorjuandaloko
permlinkre-thekyle-2017820t171849256z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-20 22:19:00
last_update2017-08-20 22:19:00
depth3
children0
last_payout2017-08-27 22:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation2,153,029,483,637
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,384,424
net_rshares0
@kamar68 ·
Great effort @thekyle... Keep on posting and sharing good stuff here....
properties (22)
authorkamar68
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t060730848z
categoryasksteem
json_metadata{"tags":["asksteem"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-08-21 06:08:21
last_update2017-08-21 06:08:21
depth1
children0
last_payout2017-08-28 06:08:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation13,256,492,358
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,409,004
net_rshares0
@keks ·
Excellent comment, I really like your work. I think it is very objective in the analysis and in what you want to convey. Thank you for sharing your knowledge with us.<p><a href="https://steemit.com/cryptocurrency/@keks/exmo-cryptocurrency-platform"><img src="http://i.imgur.com/x39Nv81.png?1" title="Hosted by steemit.com"/></p>
<p><center>http://i.imgur.com/RKA3Y2Q.gif</center><br /></p>
👍  ,
properties (23)
authorkeks
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t085458505z
categoryasksteem
json_metadata{"tags":["asksteem"],"image":["http://i.imgur.com/x39Nv81.png?1","http://i.imgur.com/RKA3Y2Q.gif"],"links":["https://steemit.com/cryptocurrency/@keks/exmo-cryptocurrency-platform"],"app":"steemit/0.1"}
created2017-08-20 08:54:57
last_update2017-08-20 08:54:57
depth1
children0
last_payout2017-08-27 08:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length389
author_reputation3,120,009,340,054
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,330,703
net_rshares812,765,673
author_curate_reward""
vote details (2)
@kingjan ·
ATS token i.c.o offering free 75 tokens worth 10 $ , here is the [link](  ATS token i.c.o offering free 75 tokens worth 10 $ , here is the [link](http://bounty.authorship.com/ref/a8128403)
properties (22)
authorkingjan
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t031359748z
categoryasksteem
json_metadata{"tags":["asksteem"],"links":["http://bounty.authorship.com/ref/a8128403"],"app":"steemit/0.1"}
created2017-08-22 03:14:03
last_update2017-08-22 03:14:03
depth1
children0
last_payout2017-08-29 03:14:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length188
author_reputation1,609,978,261,257
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,495,467
net_rshares0
@lafomaniaco ·
Awesome interview!
properties (22)
authorlafomaniaco
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t074733748z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 07:47:36
last_update2017-08-21 07:47:36
depth1
children0
last_payout2017-08-28 07:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation45,586,084,222
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,414,736
net_rshares0
@leoplaw · (edited)
$0.05
That is an extremely useful tool. Thanks for investing your time into it.

Will we ever see this integrated into the Steemit.com platform instead of the Google search?
👍  
properties (23)
authorleoplaw
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t094459731z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 09:44:51
last_update2017-08-20 09:48:18
depth1
children6
last_payout2017-08-27 09:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation189,628,210,789,149
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,333,691
net_rshares14,526,762,897
author_curate_reward""
vote details (1)
@rishabhpandey ·
Itd good resllly
properties (22)
authorrishabhpandey
permlinkre-leoplaw-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t064735498z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-22 06:48:12
last_update2017-08-22 06:48:12
depth2
children0
last_payout2017-08-29 06:48:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation162,546,949
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,507,291
net_rshares0
@thekyle · (edited)
I have discussed this with Steemit.com however, they prefer the Google search.
https://github.com/steemit/condenser/pull/1599
properties (22)
authorthekyle
permlinkre-leoplaw-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t145126472z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1","links":["https://github.com/steemit/condenser/pull/1599"]}
created2017-08-20 14:51:27
last_update2017-08-20 14:52:06
depth2
children4
last_payout2017-08-27 14:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,353,482
net_rshares0
@leoplaw ·
That is very disappointing. It tells me much about the Steemit.com development team. They will never develop this site much further.

Your search should be built in, chat should be built in...
properties (22)
authorleoplaw
permlinkre-thekyle-re-leoplaw-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t154723504z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 15:47:15
last_update2017-08-20 15:47:15
depth3
children0
last_payout2017-08-27 15:47:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length192
author_reputation189,628,210,789,149
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,357,556
net_rshares0
@nutela · (edited)
OK I consider my question answered then :(

Google really sucks for Steemit, you'll almost always get **old** posts. With all due respect, Steemit as a front-end is not much to write home about. I'd switch to a different front-end in the blink of an eye. More so if they have a *night* mode! Ie. dark background and light text.
properties (22)
authornutela
permlinkre-thekyle-re-leoplaw-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t140039389z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 14:00:39
last_update2017-08-21 14:02:45
depth3
children2
last_payout2017-08-28 14:00:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length327
author_reputation12,740,113,194,550
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,439,627
net_rshares0
@lifeisfun ·
Thats a great Articles...but if anybody has answer to the following question it will be great help..

https://steemit.com/facebook/@lifeisfun/question-making-money-with-no-of-likes-on-facebook-for-steemit-posts
properties (22)
authorlifeisfun
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t154919371z
categoryasksteem
json_metadata{"tags":["asksteem"],"links":["https://steemit.com/facebook/@lifeisfun/question-making-money-with-no-of-likes-on-facebook-for-steemit-posts"],"app":"steemit/0.1"}
created2017-08-20 15:48:24
last_update2017-08-20 15:48:24
depth1
children0
last_payout2017-08-27 15:48:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation1,962,145,227
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,357,637
net_rshares0
@marnee ·
This looks very nicely designed. Would activity on dtube also be available through this API?  Will we find everything happening on the Steem blockchain or only Steemit?
properties (22)
authormarnee
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170823t052948105z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-23 05:29:48
last_update2017-08-23 05:29:48
depth1
children1
last_payout2017-08-30 05:29:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation45,241,130,999
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,603,930
net_rshares0
@thekyle ·
This API indexes all activity on the steem blockchain, so not just Steemit. Dtube uses the AskSteem API for their search so yes that activity will show up.
👍  
properties (23)
authorthekyle
permlinkre-marnee-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170823t181946748z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-23 18:19:45
last_update2017-08-23 18:19:45
depth2
children0
last_payout2017-08-30 18:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,662,862
net_rshares1,073,589,952
author_curate_reward""
vote details (1)
@mehdibca ·
$0.68
Great stuff!! thanks for serving the community and adding these new features!
👍  , , , , , ,
properties (23)
authormehdibca
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t221527900z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:15:30
last_update2017-08-19 22:15:30
depth1
children2
last_payout2017-08-26 22:15:30
cashout_time1969-12-31 23:59:59
total_payout_value0.510 HBD
curator_payout_value0.165 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation21,763,352,448,246
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,298,897
net_rshares186,271,714,947
author_curate_reward""
vote details (7)
@akilie1029 ·
I'm not very good at codes but It's still very interesting. Is there app that we can download so I can use steemit on my android mobile phone?
properties (22)
authorakilie1029
permlinkre-mehdibca-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t101628848z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 10:16:30
last_update2017-08-21 10:16:30
depth2
children1
last_payout2017-08-28 10:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation5,297,103,276,823
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,423,497
net_rshares0
@rftube ·
Hai akilie1029 I'm new to steemit can you please follow me
👍  
properties (23)
authorrftube
permlinkre-akilie1029-re-mehdibca-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170825t075342536z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-25 07:53:45
last_update2017-08-25 07:53:45
depth3
children0
last_payout2017-09-01 07:53:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation3,614,859,567
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,816,453
net_rshares713,787,608
author_curate_reward""
vote details (1)
@milanista ·
$0.06
WOW! You set a high bar with this one !!
👍  ,
properties (23)
authormilanista
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t224143771z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:40:48
last_update2017-08-19 23:40:48
depth1
children0
last_payout2017-08-26 23:40:48
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation401,137,267
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,303,395
net_rshares16,249,586,202
author_curate_reward""
vote details (2)
@milfa ·
*Hello Friends, How Are You
Thank You Friend nice To Meet You @
the Best And amazing.
Nice To Meet You All #steemians
My Name Ary, Account name @milfa I Am Coming From Aceh Sumatra National Liberation Front (ASNLF)
I Say Welcome And Happy To You Here #steemit or#eSteem.
Vote @good-karma As Our Witness.
Do not Forget Follow Me Also @milfa
I would like to express my gratitude.*
properties (22)
authormilfa
permlinkre-thekyle-2017822t53237824z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-21 22:32:42
last_update2017-08-21 22:32:42
depth1
children0
last_payout2017-08-28 22:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length378
author_reputation1,122,706,964,240
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,479,881
net_rshares0
@misrori ·
$0.09
Great API! I am a developer I found it very useful! I will use it! thanks for the info!
👍  ,
properties (23)
authormisrori
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t050037826z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 05:00:39
last_update2017-08-20 05:00:39
depth1
children1
last_payout2017-08-27 05:00:39
cashout_time1969-12-31 23:59:59
total_payout_value0.071 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation20,447,544,397,525
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,318,800
net_rshares25,477,805,078
author_curate_reward""
vote details (2)
@thekyle ·
Great! Send me the link to whatever you build with it. :)
properties (22)
authorthekyle
permlinkre-misrori-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t011936064z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:19:36
last_update2017-08-21 01:19:36
depth2
children0
last_payout2017-08-28 01:19:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,393,905
net_rshares0
@mohamedmostafa ·
WOW Great stuff!!
properties (22)
authormohamedmostafa
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t232538164z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:25:42
last_update2017-08-19 23:25:42
depth1
children0
last_payout2017-08-26 23:25:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,397,511,238
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,302,731
net_rshares0
@mursin ·
Good post
👍  
properties (23)
authormursin
permlinkre-thekyle-2017820t9548943z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-20 02:05:54
last_update2017-08-20 02:05:54
depth1
children0
last_payout2017-08-27 02:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation221,444,560,598
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,309,993
net_rshares609,333,415
author_curate_reward""
vote details (1)
@nutela · (edited)
I love it man! I use AskSteem almost *every* day. I secretly hope Steemit Inc. will use AskSteem for search instead of Google! ~~Any news on *that*?~~  [Answered](https://steemit.com/asksteem/@thekyle/asksteem-api-v1-1-update-user-search-includes-and-sorting#@thekyle/re-leoplaw-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t145126472z)

Thanks to @Dtube for resteeming!
👍  
properties (23)
authornutela
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t135802239z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1","users":["dtube"],"links":["https://steemit.com/asksteem/@thekyle/asksteem-api-v1-1-update-user-search-includes-and-sorting#@thekyle/re-leoplaw-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t145126472z"]}
created2017-08-21 13:58:00
last_update2017-08-21 14:03:57
depth1
children0
last_payout2017-08-28 13:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length402
author_reputation12,740,113,194,550
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,439,392
net_rshares2,113,130,767
author_curate_reward""
vote details (1)
@oddreality ·
$0.05
Wow, this sounds really cool! Question, I noticed you earn a lot per post. I currently have been getting $0.02 per post lol! Would I earn more if I had more Steem Power?
👍  
properties (23)
authoroddreality
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t013209713z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:32:09
last_update2017-08-21 01:32:09
depth1
children2
last_payout2017-08-28 01:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation256,299,405,521
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,394,629
net_rshares14,273,389,126
author_curate_reward""
vote details (1)
@thekyle ·
Steem power determines how much your individual vote is worth (mine is worth about 5 Steem Cents right now). While there are some accounts that have upvotes worth hundreds of dollars those are rare. If you want to make more money I'd recommend to just keep producing quality content that people want to read. :D
👍  
properties (23)
authorthekyle
permlinkre-oddreality-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t020458879z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 02:05:00
last_update2017-08-21 02:05:00
depth2
children1
last_payout2017-08-28 02:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length311
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,396,416
net_rshares4,173,046,531
author_curate_reward""
vote details (1)
@oddreality ·
Wow, thanks a lot for replying, man! I really appreciate it!
👍  
properties (23)
authoroddreality
permlinkre-thekyle-re-oddreality-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t012623136z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-22 01:26:21
last_update2017-08-22 01:26:21
depth3
children0
last_payout2017-08-29 01:26:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation256,299,405,521
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,489,455
net_rshares4,086,707,637
author_curate_reward""
vote details (1)
@praise-eu ·
Great people on great STEEMIT, doing great jobs. I like this.
properties (22)
authorpraise-eu
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t112026406z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 11:20:27
last_update2017-08-20 11:20:27
depth1
children0
last_payout2017-08-27 11:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation44,842,742,331,249
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,339,283
net_rshares0
@redwood419 ·
If I have 1,000 worth of Steem Power and the Steem token is worth $10 each on the open market, does that mean that my account value should be worth $10,000?
properties (22)
authorredwood419
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t151035814z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 15:10:45
last_update2017-08-21 15:10:45
depth1
children3
last_payout2017-08-28 15:10:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation113,740,231,769
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,445,765
net_rshares0
@thekyle ·
Theoretically yes, but keep in mind STEEM Power is not liquid and must be converted to STEEM before being transferred to an exchange which takes several years if I'm not mistaken.
properties (22)
authorthekyle
permlinkre-redwood419-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t190502184z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 19:05:00
last_update2017-08-21 19:05:00
depth2
children2
last_payout2017-08-28 19:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,465,652
net_rshares0
@redwood419 ·
Got it. Thanks! So I can build up my portfolio value in Steem Power but it's not very liquid to exchange for tokens.
properties (22)
authorredwood419
permlinkre-thekyle-re-redwood419-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t214100358z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 21:41:09
last_update2017-08-21 21:41:09
depth3
children1
last_payout2017-08-28 21:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation113,740,231,769
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,476,712
net_rshares0
@rftube ·
A very good alternative
properties (22)
authorrftube
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170825t075606997z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-25 07:56:09
last_update2017-08-25 07:56:09
depth1
children0
last_payout2017-09-01 07:56:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation3,614,859,567
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,816,601
net_rshares0
@rocking-dave ·
Looks like a killer project! Glad to learn about it!
properties (22)
authorrocking-dave
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t184053507z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 18:40:54
last_update2017-08-21 18:40:54
depth1
children0
last_payout2017-08-28 18:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation4,146,063,643,264
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,463,868
net_rshares0
@sadiegecke ·
$0.05
Thank you so much for taking the time and effort to develop this app! I am not proficient enough with coding to make a Steem app yet (hopefully I will be within the coming year). I so admire programmers who try and eventually succeed because I think that programming can be so frustrating even when it is fun. Keep up the great work, please!
👍  
properties (23)
authorsadiegecke
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t034755528z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 03:47:57
last_update2017-08-20 03:47:57
depth1
children7
last_payout2017-08-27 03:47:57
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length341
author_reputation2,257,926,414
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,315,075
net_rshares14,780,136,669
author_curate_reward""
vote details (1)
@thekyle ·
I plan to make some tutorial posts about developing apps on the steem blockchain at some point so make sure to stay tuned for those. :)
👍  
properties (23)
authorthekyle
permlinkre-sadiegecke-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t012214224z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:22:12
last_update2017-08-21 01:22:12
depth2
children6
last_payout2017-08-28 01:22:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,394,058
net_rshares992,342,027
author_curate_reward""
vote details (1)
@bubke ·
I would really appreciate a tutorial post on steem blockchain programming, please do, willl follow you, i am a programmer.
properties (22)
authorbubke
permlinkre-thekyle-re-sadiegecke-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t160908839z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-22 16:09:12
last_update2017-08-22 16:09:12
depth3
children3
last_payout2017-08-29 16:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation9,285,631,006,103
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,549,452
net_rshares0
@sadiegecke ·
I found the video about AskSteem that you put on DT really helpful. Thank you. Also, following you now.
properties (22)
authorsadiegecke
permlinkre-thekyle-re-sadiegecke-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t040120522z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-22 04:01:21
last_update2017-08-22 04:01:21
depth3
children1
last_payout2017-08-29 04:01:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation2,257,926,414
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,498,172
net_rshares0
@saimegh ·
Resteeming this will be too worth for this post..
 
Started visiting your blog for new feeds...
Stay blessed @thekyle
properties (22)
authorsaimegh
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t102659570z
categoryasksteem
json_metadata{"tags":["asksteem"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-08-20 10:26:36
last_update2017-08-20 10:26:36
depth1
children0
last_payout2017-08-27 10:26:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation9,454,816,228,588
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,336,123
net_rshares0
@shango ·
$0.06
Love your API and plan on using it on a future project.
👍  ,
properties (23)
authorshango
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t224949001z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:49:48
last_update2017-08-19 22:49:48
depth1
children1
last_payout2017-08-26 22:49:48
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation3,432,125,687,483
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,300,802
net_rshares18,011,600,227
author_curate_reward""
vote details (2)
@thekyle ·
Can't wait to see what you do with it! :)
properties (22)
authorthekyle
permlinkre-shango-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t000606503z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 00:06:06
last_update2017-08-20 00:06:06
depth2
children0
last_payout2017-08-27 00:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,304,498
net_rshares0
@shawki ·
We are waiting for the new one to be launched
properties (22)
authorshawki
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t222622234z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:26:45
last_update2017-08-19 22:26:45
depth1
children1
last_payout2017-08-26 22:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation2,339,305,954,746
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,299,549
net_rshares0
@thekyle ·
It is already launched.
properties (22)
authorthekyle
permlinkre-shawki-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t222738622z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:27:39
last_update2017-08-19 22:27:39
depth2
children0
last_payout2017-08-26 22:27:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,299,599
net_rshares0
@spiderlee3 ·
Why not taking of the .com,, just put  Ask Steem without the .com, I think its better
properties (22)
authorspiderlee3
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t085341409z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 08:53:39
last_update2017-08-21 08:53:39
depth1
children0
last_payout2017-08-28 08:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation143,350,007,398
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,418,664
net_rshares0
@spiritualmatters ·
I am enjoying watching how Steemit is growing.  I am hoping a FAQ link will be included in this AskSteem app. I am currently collaborating with another Steemian to write an e-book. Of course, there's room in the pond for any Steemian wanting to be the 'first' to create such a helpful tool. 
Peace!
properties (22)
authorspiritualmatters
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170824t034209052z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-24 03:41:57
last_update2017-08-24 03:41:57
depth1
children0
last_payout2017-08-31 03:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length298
author_reputation2,451,790,568,880
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,700,015
net_rshares0
@steemitqa ·
$0.05
Glad to see this going so well!
👍  
properties (23)
authorsteemitqa
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t232134977z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 23:21:33
last_update2017-08-19 23:21:33
depth1
children1
last_payout2017-08-26 23:21:33
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation22,135,803,163,402
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,302,522
net_rshares15,371,342,135
author_curate_reward""
vote details (1)
@thekyle ·
Thanks. :)
properties (22)
authorthekyle
permlinkre-steemitqa-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t015531087z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-21 01:55:30
last_update2017-08-21 01:55:30
depth2
children0
last_payout2017-08-28 01:55:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,395,945
net_rshares0
@steemresteem ·
# FOLLOWED, UPPED and RESTEEMED
*Upvote this Comment for More Resteems*
https://steemitimages.com/DQmNRxGArjqx7ifhADyUyC9g2xiihKTr8dPnWP2tENqFFJe/steemresteem%20.png
properties (22)
authorsteemresteem
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t112715775z
categoryasksteem
json_metadata{"tags":["asksteem"],"image":["https://steemitimages.com/DQmNRxGArjqx7ifhADyUyC9g2xiihKTr8dPnWP2tENqFFJe/steemresteem%20.png"],"app":"steemit/0.1"}
created2017-08-21 11:27:39
last_update2017-08-21 11:27:39
depth1
children0
last_payout2017-08-28 11:27:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation4,677,180,865
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,428,125
net_rshares0
@steevc ·
This is really cool. We need ways to find the good content in our interests and this is a great tool for that. Thanks
properties (22)
authorsteevc
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170820t122654951z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-20 12:26:54
last_update2017-08-20 12:26:54
depth1
children0
last_payout2017-08-27 12:26:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation1,381,263,952,475,480
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,343,277
net_rshares0
@tanyaschutte ·
This is a wonderful initiative. Will be making use of AskSteem. Thank
properties (22)
authortanyaschutte
permlinkre-thekyle-2017823t19177760z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-23 18:17:12
last_update2017-08-23 18:17:12
depth1
children0
last_payout2017-08-30 18:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation25,887,947,720,420
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,662,646
net_rshares0
@team101 ·
Very nice contribution to the community.  Thank you!
properties (22)
authorteam101
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t225628392z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:56:39
last_update2017-08-19 22:56:39
depth1
children0
last_payout2017-08-26 22:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation12,700,047,182,916
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,301,184
net_rshares0
@terrybrock ·
$0.06
Adrian M you are incredible. I am not a programmer or coder, but I appreciate what you are doing enormously! Thank you. You and other coders produce valuable tools we can use. 

I wanted to thank you here for the work you've done with DTube. I love it! You are off to a great start. I did a video on DTube recently and posted it here on Steemit. You'll notice that you figure prominently in it. 

I loved the interview you did with my friend Dan Dicks of Press For Truth. Would you be open to an interview with me so I could spread your message on what you've done with DTube? 

Here is the link to the video I did so you can see it. 

https://steemit.com/dtube/@terrybrock/n1108mgs

Thank you for what you are doing to help us. Keep up the good work! 

Terry
👍  
properties (23)
authorterrybrock
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t161606868z
categoryasksteem
json_metadata{"tags":["asksteem"],"links":["https://steemit.com/dtube/@terrybrock/n1108mgs"],"app":"steemit/0.1"}
created2017-08-21 16:16:06
last_update2017-08-21 16:16:06
depth1
children2
last_payout2017-08-28 16:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length759
author_reputation177,892,578,444,114
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,451,810
net_rshares16,131,463,450
author_curate_reward""
vote details (1)
@thekyle ·
Hi Terry,
Thank you for your kind words, however, I believe you meant this message to be for a friend of mine @heimindanger (Adrian M), not me. That said I am the lead developer behind AskSteem, so if you have any questions regarding that project do let me know.
properties (22)
authorthekyle
permlinkre-terrybrock-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170821t191307918z
categoryasksteem
json_metadata{"tags":["asksteem"],"users":["heimindanger"],"app":"steemit/0.1"}
created2017-08-21 19:13:06
last_update2017-08-21 19:13:06
depth2
children1
last_payout2017-08-28 19:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,466,231
net_rshares0
@terrybrock ·
Yes, my mistake, thekyle. Thank you for your help.
properties (22)
authorterrybrock
permlinkre-thekyle-re-terrybrock-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170822t223931870z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-22 22:39:30
last_update2017-08-22 22:39:30
depth3
children0
last_payout2017-08-29 22:39:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation177,892,578,444,114
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,578,771
net_rshares0
@voldo ·
Wow this is great!
I'm just running into a small problem. Do you have a full list of accepted parameters for the 'include' option ?
For example, I cannot get 'curator_payout_value' on results.

Thanks for your help! :)
properties (22)
authorvoldo
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170927t042732822z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-09-27 04:27:33
last_update2017-09-27 04:27:33
depth1
children1
last_payout2017-10-04 04:27:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation82,591,572
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,046,370
net_rshares0
@thekyle · (edited)
Glad you like it. Here is a list of blockchain fields that we currently index:
- permlink
- total_payout_value
- created
- title
- children
- net_votes
- body
- parent_permlink
- tags
- author
- json_metadata (as meta)

If you need some other field not listed for a specific application please contact me on Steemit.chat and we can figure it out. Also, I apologize for the delay I have not had a chance to check steemit until now.
properties (22)
authorthekyle
permlinkre-voldo-re-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170928t184908076z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-09-28 18:49:06
last_update2017-09-28 18:49:42
depth2
children0
last_payout2017-10-05 18:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length430
author_reputation4,705,240,024,157
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,208,459
net_rshares0
@walil ·
Nice
properties (22)
authorwalil
permlinkre-thekyle-2017821t20474843z
categoryasksteem
json_metadata{"tags":"asksteem","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-21 13:47:09
last_update2017-08-21 13:47:09
depth1
children0
last_payout2017-08-28 13:47:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation306,245,884,932
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,438,455
net_rshares0
@zoltrix ·
This is some really good stuff. Good luck with everything!
properties (22)
authorzoltrix
permlinkre-thekyle-asksteem-api-v1-1-update-user-search-includes-and-sorting-20170819t222056242z
categoryasksteem
json_metadata{"tags":["asksteem"],"app":"steemit/0.1"}
created2017-08-19 22:20:57
last_update2017-08-19 22:20:57
depth1
children0
last_payout2017-08-26 22:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation189,658,388,758
root_title"AskSteem API v1.1 Update - User Search, Includes, and Sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,299,197
net_rshares0