Get a Specific Project
Returns a Project Resource.
HTTP Request
GET https://app.resemble.ai/api/v1/projects/<project_uuid>
URL Parameter | Description |
---|---|
project_uuid | The UUID of the project to fetch |
HTTP Response
{
"id": 1,
"name": "Resemble",
"description": "Thoughts by Resemble"
}
Examples
Remember
Make sure you replace YOUR_API_TOKEN with your own!
cURL
curl "https://app.resemble.ai/api/v1/projects/<project_uuid>" \
-H "Authorization: Token token=YOUR_API_TOKEN"
Python
import requests
url = "https://app.resemble.ai/api/v1/projects/<project_uuid>"
headers = {
'Authorization': 'Token token=YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)