This is a simple C# client to allow using OSM API easily over REST. Please read the API's documentation and use it responsibly. Misuse can have an adverse affect on the OSM ecosystem. Pull requests are welcome. You will need VisualStudio, VS Code or Rider to modify this project.
- Supports Logging using ILogger
- Supports Authentication with username and password, OAuth 1 and OAuth 2
- Supports every documented operation of the Osm Api v0.6
- Is thread safe
// Create a client factory (pointing at the dev server)
var clientFactory = new ClientsFactory(null, new HttpClient(),
"https://master.apis.dev.openstreetmap.org/api/");
// After testing, use "https://www.openstreetmap.org/api/" for production
var client = clientFactory.CreateNonAuthClient();
var node = await client.GetNode(100);
var authClient = clientFactory.CreateBasicAuthClient("username", "password");
var changeSetTags = new TagsCollection() { new Tag("comment", "Deleting a node.") };
var changeSetId = await client.CreateChangeset(changeSetTags);
node.Version = await client.DeleteElement(changeSetId, node);
await client.CloseChangeset(changeSetId);
See the functional tests for examples of each operation.
🌕 = Does not use authentication
🌗 = With or without authentication (behavior may differ)
🌑 = Requires authentication
- 🌕 Get Api versions
- 🌕 Get Api capabilities
- 🌕 Get a map section
- 🌕 Get a specific changeset's metadata
- 🌕 Get a specific changeset's changes
- 🌕 Search for changesets
- 🌑 Create a new changeset with metadata
- 🌑 Add changes to an open changeset
- 🌑 Update an open changeset's metadata
- 🌑 Close an open changeset
- 🌑 Add comments to a changeset
- 🌑 Subscribe to a changeset
- 🌑 UnSubscribe to a changeset
- 🌕 Get an element
- 🌕 Get an element's version history
- 🌕 Get a specific version of an element
- 🌕 Search for elements
- 🌕 Get relations containing a specific element
- 🌕 Get ways containing a specific node
- 🌕 Get a relation and all of its elements
- 🌕 Get a way and all of its nodes
- 🌑 Create a new element
- 🌑 Update an element
- 🌑 Delete an element
- 🌕 Get trackpoints in an area
- 🌗 Get a gpx file's metadata
- 🌗 Get a gpx file's original upload data
- 🌑 Get current user's gpx files
- 🌑 Create a new gpx file
- 🌑 Update a gpx file's metadata
- 🌑 Delete a gpx file
- 🌕 Get details about a user
- 🌕 Get details about many users
- 🌑 Get current user's permissions
- 🌑 Get current user's details
- 🌑 Get current user's preferences
- 🌑 Update current user's preferences
- 🌑 Get a current user's preference
- 🌑 Update a current user's preference
- 🌑 Delete a current user's preference
- 🌕 Search for notes
- 🌕 Get an RSS feed of notes in an area
- 🌕 Get a note
- 🌗 Create a new note
- 🌑 Comment on a note
- 🌑 Close a note
- 🌑 ReOpen a note
Issues and pull requests are welcome.