The 73s ham radio social network just got better with a new REST API that returns JSON for all calls!
| Callsigns | ||
| GET | /{callsign}.json - Returns callsign lookup information including: name, address, geo codes, image, follower/following counts, and user profile page URLcurl -X GET http://73s.com/n7ice.json
|
|
| Statuses | ||
| POST | /statuses.json - Post a status update to 73s. Requires basic authentication. Requires message parameter. curl -X POST -u "callsign:password" -d "message=this is a test" http://73s.com/statuses.json
|
|
| QSOs | ||
| GET | /qsos/{callsign}.json - Returns list of all QSO contacts for a given callsigncurl -X GET http://73s.com/qsos/n7ice.json
|
|
| GET | /qsos/{callsign}/{contact}.json - Returns list of all QSO contacts for a given callsign with the named contacts callsigncurl -X GET http://73s.com/qsos/n7ice/n7tww.json
|
|
| GET | /qsos/{callsign}/{contact}/{year}.json - Returns list of all QSO contacts for a given callsign with the named contacts callsign in a given yearcurl -X GET http://73s.com/qsos/n7ice/n7tww/2012.json
|
|
| GET | /qsos/{callsign}/{contact}/{year}/{month}.json - Returns list of all QSO contacts for a given callsign with the named contacts callsign in a given year and monthcurl -X GET http://73s.com/qsos/n7ice/n7tww/2012/01.json
|