Skip to main content
Version: 1.0.0

Get a Specific Project

Returns a Project Resource.

HTTP Request

GET https://app.resemble.ai/api/v1/projects/<project_uuid>

URL ParameterDescription
project_uuidThe 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)