# Endpoints Overview

## Bind current owner wallet address to a publisher

> Associates a given owner wallet address with a publisher within a specific project.

```json
{"openapi":"3.0.3","info":{"title":"DePINscan Map Integration API","version":"1.0.0"},"servers":[{"url":"https://api.example.com","description":"Production server"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"YOUR_SECRET_TOKEN"}}},"paths":{"/api/project/{uid}/ownership":{"post":{"summary":"Bind current owner wallet address to a publisher","description":"Associates a given owner wallet address with a publisher within a specific project.","parameters":[{"in":"path","name":"uid","required":true,"schema":{"type":"string"},"description":"Project ID"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["publisher","owner"],"properties":{"publisher":{"type":"string","description":"Unique identifier of the publisher"},"owner":{"type":"string","description":"Wallet address of the owner"}}}}}},"responses":{"200":{"description":"Ownership successfully bound","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"},"publisher":{"type":"string"},"owner":{"type":"string"}}}}}},"400":{"description":"Invalid input (e.g., malformed wallet address)"},"401":{"description":"Unauthorized (missing/invalid token)"},"404":{"description":"Project or publisher not found"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.depinscan.io/developer/ioid-integration/endpoints-overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
